| Giorgi Lekveishvili | 58cb148 | 2023-12-04 12:33:49 +0400 | [diff] [blame] | 1 | {{ define "title" }}Create Account{{ end }} |
| 2 | {{ define "main" }} |
| 3 | <form action="" method="POST"> |
| 4 | <input type="text" name="username" placeholder="Username" autofocus required /> |
| 5 | <input type="password" name="password" placeholder="Password" required /> |
| 6 | <input type="hidden" name="csrf_token" value="{{ . }}" /> |
| 7 | <button type="submit">Create Account</button> |
| 8 | </form> |
| 9 | <nav> |
| 10 | <ul> |
| 11 | <li> |
| 12 | <a href="/login">Sign In</a> |
| 13 | </li> |
| 14 | </ul> |
| 15 | </nav> |
| 16 | {{ end }} |