Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
</div>
</div>
</section>
+
+ <section class="section">
+ <div class="container">
+ <div class="notification">
+ <h4 class="title is-4">{{ _("Console Interface") }}</h4>
+
+ <div class="content">
+ <p>
+ {{ _("You can also upload files using the console like so:") }}
+ </p>
+
+ <pre>
+curl -u {{ current_user.uid }} -T- https://{{ request.host }} < file.txt
+ </pre>
+
+ <p>
+ {{ _("Or you can stream data into it like so:") }}
+ </p>
+
+ <pre>
+some command | curl -u {{ current_user.uid }} -T- https://{{ request.host }}
+ </pre>
+ </div>
+ </div>
+ </div>
+ </section>
{% end block %}