blob: 626dc5234977b262068c1fcf3c499b96386d69e6 [file] [log] [blame]
giodd213152024-09-27 11:26:59 +02001{{ define "title" }}dodo: create account{{ end }}
Giorgi Lekveishvili58cb1482023-12-04 12:33:49 +04002{{ 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 }}