blob: cec42b4c2465f22e6744b7f6bd994f1febfa35e9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{{define "title"}}Login{{end}}
{{define "main"}}
<!-- <div style="padding-top: 33vh; max-width: 33vw; margin: 0px auto;"> -->
<div style="padding-top: 33vh; max-width: 33vw; margin: auto;">
<form action="/login" method="POST">
<label for="username">Username:</label>
<input type="text" placeholder="Username" name="username" id="username" required />
<label for="password">Password:</label>
<input type="password" placeholder="Username" name="password" id="password" required />
<input type="submit" value="Submit">
</form>
</div>
{{end}}
|