| Giorgi Lekveishvili | b4a9c98 | 2023-06-22 15:17:02 +0400 | [diff] [blame] | 1 | <!DOCTYPE html> |
| 2 | <html lang="en" data-theme="light"> |
| 3 | <head> |
| Giorgi Lekveishvili | df874f4 | 2023-12-11 15:46:46 +0400 | [diff] [blame] | 4 | <link rel="stylesheet" href="/static/pico.min.css"> |
| 5 | <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/hack-font@3/build/web/hack.css"> |
| 6 | <link rel="stylesheet" href="/static/main.css"> |
| Giorgi Lekveishvili | b4a9c98 | 2023-06-22 15:17:02 +0400 | [diff] [blame] | 7 | <meta charset="utf-8" /> |
| 8 | <meta name="viewport" content="width=device-width, initial-scale=1" /> |
| 9 | </head> |
| 10 | <body> |
| Giorgi Lekveishvili | df874f4 | 2023-12-11 15:46:46 +0400 | [diff] [blame] | 11 | <nav id="menu" class="container-fluid"> |
| 12 | <ul> |
| 13 | <li class="dodo"><span style="color: #ffffff;">do</span><span class="highlight">do:</span></li> |
| 14 | </ul> |
| 15 | <ul> |
| 16 | <li><a href="#">register</a></li> |
| 17 | <li><a href="#">apps</a></li> |
| 18 | <li><a href="#" style="border-right: none;">about</a></li> |
| 19 | </ul> |
| 20 | </nav> |
| Giorgi Lekveishvili | 6ae65d1 | 2023-12-04 15:37:53 +0400 | [diff] [blame] | 21 | <main class="container"> |
| Giorgi Lekveishvili | df874f4 | 2023-12-11 15:46:46 +0400 | [diff] [blame] | 22 | <div class="grid contents-header"> |
| 23 | <div style="border-width: 1px; border-right-style: solid;"> |
| 24 | attention |
| 25 | </div> |
| 26 | <div> |
| 27 | take <span class="highlight">control</span> |
| 28 | </div> |
| 29 | </div> |
| 30 | <div id="contents" class="grid"> |
| 31 | <div style="border-width: 1px; border-right-style: solid;"> |
| 32 | As part of provisioning new dodo instance you will have to update DNS records at your domain registrar, so that it points to the nameservers running on your newly created dodo. Please first get familiar with your domain registrar documentation, and only then proceed with provisioning. |
| 33 | <label for="accept" style="padding-top: 1rem;"> |
| 34 | <input type="checkbox" name="accept" id="accept" form="create-form" required tabindex="5"> |
| 35 | <strong>I understand</strong> |
| 36 | </label> |
| 37 | </div> |
| 38 | <div id="create-instance-form"> |
| 39 | <form action="" method="POST" id="create-form"> |
| 40 | <label for="domain"> |
| 41 | domain |
| 42 | <input |
| 43 | type="text" |
| 44 | id="domain" |
| 45 | name="domain" |
| 46 | required |
| 47 | autofocus |
| 48 | tabindex="1" |
| 49 | /> |
| 50 | </label> |
| 51 | <label for="contact-email"> |
| 52 | contact email |
| 53 | <input |
| 54 | type="email" |
| 55 | id="contact-email" |
| 56 | name="contact-email" |
| 57 | required |
| 58 | tabindex="2" |
| 59 | /> |
| 60 | </label> |
| 61 | <label for="admin-public-key"> |
| 62 | admin ssh public key |
| 63 | <input |
| 64 | type="string" |
| 65 | id="admin-public-key" |
| 66 | name="admin-public-key" |
| 67 | required |
| 68 | tabindex="3" |
| 69 | /> <!-- TODO(gio): remove--> |
| 70 | </label> |
| 71 | <label for="secret-token"> |
| 72 | invitation code |
| 73 | <textarea |
| 74 | id="secret-token" |
| 75 | name="secret-token" |
| 76 | required |
| 77 | tabindex="4" |
| 78 | ></textarea> |
| 79 | </label> |
| 80 | <button type="submit" tabindex="6">provision</button> |
| 81 | </form> |
| 82 | </div> |
| 83 | </div> |
| Giorgi Lekveishvili | 6ae65d1 | 2023-12-04 15:37:53 +0400 | [diff] [blame] | 84 | </main> |
| Giorgi Lekveishvili | b4a9c98 | 2023-06-22 15:17:02 +0400 | [diff] [blame] | 85 | </body> |
| 86 | </html> |