ily.li/views/file-manager.njk

23 lines
656 B
Plaintext
Raw Normal View History

{% extends 'layouts/base.njk' %}
{% set title = 'ily.li - File manager' %}
{% block body %}
<h1>File manager</h1>
<p>You're their manager, please be nice with them.</p>
<div class="container">
<section class="panel">
<h2>Upload a file</h2>
<form action="{{ route('post-file') }}" method="POST">
{{ macros.field(_locals, 'file', 'upload', '', 'Choose wisely', 'The maximum upload size is' + max_upload_size, validation_attributes='required') }}
</form>
</section>
<section class="panel">
<h2>File list</h2>
</section>
</div>
{% endblock %}