| Giorgi Lekveishvili | b4a9c98 | 2023-06-22 15:17:02 +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="/env" method="POST"> |
| 14 | <input |
| Giorgi Lekveishvili | b4a9c98 | 2023-06-22 15:17:02 +0400 | [diff] [blame] | 15 | type="test" |
| 16 | name="domain" |
| 17 | placeholder="Domain" |
| 18 | required |
| 19 | /> |
| 20 | <input |
| 21 | type="email" |
| 22 | name="contact-email" |
| 23 | placeholder="Contact Email" |
| 24 | required |
| Giorgi Lekveishvili | 081f18f | 2023-11-07 14:58:10 +0400 | [diff] [blame] | 25 | /> |
| Giorgi Lekveishvili | 724885f | 2023-11-29 16:18:42 +0400 | [diff] [blame^] | 26 | <input |
| 27 | type="string" |
| 28 | name="admin-public-key" |
| 29 | placeholder="Admin SSH Public Key" |
| 30 | required |
| 31 | /> <!-- TODO(gio): remove--> |
| Giorgi Lekveishvili | 081f18f | 2023-11-07 14:58:10 +0400 | [diff] [blame] | 32 | <textarea |
| 33 | name="secret-token" |
| 34 | placeholder="Secret Token" |
| 35 | required |
| 36 | ></textarea> |
| Giorgi Lekveishvili | b4a9c98 | 2023-06-22 15:17:02 +0400 | [diff] [blame] | 37 | <button type="submit" class="contrast">Create Environment</button> |
| 38 | </form> |
| 39 | </div> |
| 40 | </article> |
| 41 | </main> |
| 42 | </div> |
| 43 | </body> |
| 44 | </html> |