medication/index.html

72 lines
1.4 KiB
HTML

<!doctype html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{{.Title}}</title>
<style>
* {
font-family: Tahoma, sans-serif;
font-size: large;
}
html {
background-color: #222222;
color: #eeeeee;
}
</style>
</head>
<body>
<div style="display: flex; align-items: center; flex-direction: column">
<p>{{.Message}}</p>
{{if not .Authenticated}}
<form
action="/login"
method="post"
style="display: flex; flex-direction: column; align-items: stretch"
>
<label>
Username:
<input type="text" name="username" required />
</label>
<label>
Password:
<input type="password" name="password" required />
</label>
<button type="submit">Login</button>
</form>
{{end}} {{if .ShowInput}}
<form action="/post" method="post">
<label>
How many hours should the timeout be?
<input
type="number"
name="next"
min="1"
max="24"
value="12"
step="1"
required
/>
</label>
<button type="submit">Submit</button>
</form>
{{end}}
{{ if .Timestamps }}
<table style="text-align: center">
<tr>
<th>Taken</th>
<th>Ends</th>
<th>Has Ended</th>
</tr>
{{ range .Timestamps}}
<tr>
<td>{{ index . 0}}</td>
<td>{{ index . 1}}</td>
<td>{{ index . 2}}</td>
</tr>
{{end}}
</table>
{{end}}
</div>
</body>