| <!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> |
| <div style="display: contents"> |
| <main class="container"> |
| <article class="grid"> |
| <div> |
| <form action="/env" method="POST"> |
| <input |
| type="test" |
| name="domain" |
| placeholder="Domain" |
| required |
| /> |
| <input |
| type="email" |
| name="contact-email" |
| placeholder="Contact Email" |
| required |
| /> |
| <textarea |
| name="secret-token" |
| placeholder="Secret Token" |
| required |
| ></textarea> |
| <button type="submit" class="contrast">Create Environment</button> |
| </form> |
| </div> |
| </article> |
| </main> |
| </div> |
| </body> |
| </html> |