aboutsummaryrefslogtreecommitdiff
path: root/bh20simplewebuploader/templates/error.html
blob: b1d9402cc3d474e862db4a7b6fcec5b7ec877c63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title>Upload Failed</title>
    </head>
    <body>
        <h1>Upload Failed</h1>
        <hr>
        <p>
          Your upload has failed.
          <pre>
            {{error_message|safe}}
          </pre>
        </p>
        <p>
            <a href="/">Click here to try again.</a>
        </p>
        <hr>
    </body>
</html>