| Giorgi Lekveishvili | 12850ee | 2023-06-22 13:11:17 +0400 | [diff] [blame^] | 1 | <!DOCTYPE html> |
| 2 | <html lang="en" data-theme="light"> |
| 3 | <head> |
| 4 | <link rel="stylesheet" href="/static/pico.min.css"> |
| 5 | <meta charset="utf-8" /> |
| 6 | <meta name="viewport" content="width=device-width, initial-scale=1" /> |
| 7 | </head> |
| 8 | <body> |
| 9 | <div style="display: contents"> |
| 10 | <main class="container"> |
| 11 | <article class="grid"> |
| 12 | <div> |
| 13 | <form action="/create-admin-account" method="POST"> |
| 14 | <input |
| 15 | type="text" |
| 16 | name="username" |
| 17 | placeholder="Username" |
| 18 | aria-label="Username" |
| 19 | required |
| 20 | /> |
| 21 | <input |
| 22 | type="password" |
| 23 | name="password" |
| 24 | placeholder="Password" |
| 25 | aria-label="Password" |
| 26 | required |
| 27 | /> |
| 28 | <input |
| 29 | type="text" |
| 30 | name="gandi-api-token" |
| 31 | placeholder="Gandi API Token" |
| 32 | aria-label="Gandi API Token" |
| 33 | required |
| 34 | /> |
| 35 | <input |
| 36 | type="text" |
| 37 | name="secret-token" |
| 38 | placeholder="Secret Token" |
| 39 | aria-label="Secret Token" |
| 40 | required |
| 41 | /> |
| 42 | <button type="submit" class="contrast">Create Admin Account</button> |
| 43 | </form> |
| 44 | </div> |
| 45 | </article> |
| 46 | </main> |
| 47 | </div> |
| 48 | </body> |
| 49 | </html> |