summaryrefslogtreecommitdiff
path: root/controller/template/base.html
blob: c91245d6bd11ef067e53df3356f13e571cc13403 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{{define "header"}}
<!DOCTYPE html>
<html lang="en">
    <head>
        <title>drop.janw.name</title>
        <meta charset="UTF-8">
        <meta name="author" content="Jan Wolff">
        <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
        <link href="data:," rel="icon">
        <style>
            html, body {
                padding: 0;
                margin: 0;
                width: 100%;
                height: 100%;
            }

            body {
                display: flex;
                justify-content: center;
                align-items: center;
                background: #ebebeb;
                font-family: sans-serif;
            }

            main {
                padding: 2rem;
                border-radius: 2rem;
                background: #fefefe;
            }

            form {
                display: flex;
                flex-direction: column;
                gap: 1rem;
            }

            progress {
                width: 100%;
            }
        </style>
    </head>
    <body>
{{end}}

{{define "footer"}}
    </body>
</html>
{{end}}