aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/templates/files.html
blob: 5095242a0d300a46ee2aa8cdfa76ceceb078e437 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Uploaded Files</title>
</head>
<body>
    <h1>Uploaded Files</h1>
    <ul>
        {% for file in files %}
            <li><a href="{{ url_for('file_info', filename=file) }}">{{ file }}</a></li>
        {% endfor %}
    </ul>
    <a href="{{ url_for('upload_file') }}">Upload More Files</a>
    <a href="{{ url_for('logout') }}">Logout</a>
</body>
</html>