| <!DOCTYPE html> |
| <html lang="en" data-theme="light"> |
| <head> |
| <link rel="stylesheet" href="/static/pico.min.css"> |
| <meta charset="utf-8" /> |
| <meta name="viewport" content="width=device-width, initial-scale=1" /> |
| </head> |
| <body> |
| <main class="container"> |
| <form action="" method="POST"> |
| <input |
| type="text" |
| name="username" |
| placeholder="Username" |
| aria-label="Username" |
| required |
| /> |
| <input |
| type="password" |
| name="password" |
| placeholder="Password" |
| aria-label="Password" |
| required |
| /> |
| <input |
| type="text" |
| name="secret-token" |
| placeholder="Secret Token" |
| aria-label="Secret Token" |
| required |
| /> |
| <button type="submit">Create Account</button> |
| </form> |
| </main> |
| </body> |
| </html> |