aboutsummaryrefslogtreecommitdiffstats
path: root/shareit/templates/propose_upload.html
blob: c3c8bb9744a5dc383cd1c90e515c26aae33e5b7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "base.html" %}
{% block title %}
{% if lang == 'en' %}Upload{% else %}Dépôt{% endif %}
{% endblock %}
{% block content %}
<form action="/upload/" method="post" enctype="multipart/form-data">

<p>
    {% if lang == 'en' %}
    <label for="browse_file">Select your file:</label>
    {% else %}
    <label for="browse_file">Sélectionnez votre fichier:</label>
    {% endif %}

    <input type="file" id="browse_file" name="upload" />

    <input type="submit" />
</p>

</form>
{% endblock content %}