diff options
| author | Jan Wolff <janw@mailbox.org> | 2025-09-12 09:34:01 +0200 |
|---|---|---|
| committer | Jan Wolff <janw@mailbox.org> | 2025-09-12 09:34:01 +0200 |
| commit | 283c31564a9d5dab4b8b71d7498886b0cd20a999 (patch) | |
| tree | bc15867a389f25b1855042b5af20efba96c68dbb /controller/template/base.html | |
initial commit
Diffstat (limited to 'controller/template/base.html')
| -rw-r--r-- | controller/template/base.html | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/controller/template/base.html b/controller/template/base.html new file mode 100644 index 0000000..c91245d --- /dev/null +++ b/controller/template/base.html @@ -0,0 +1,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}} |
