blob: 1b29ddd745d211f40df96ef793aca4c7afd7f0a8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
---
title: Login
description: Login page
|---
<form action="/login" method="POST">
<label for="username">Username:</label>
<input type="text" id="username" name="username" />
<label for="password">Password:</label>
<input type="password" id="password" name="password" />
<input type="submit" value="submit">
</form>
{{if .Vars}}
```
{{.Vars}}
```
{{else}}{{end}}
|