| Davit Tabidze | aec6d8a | 2024-07-29 18:30:09 +0400 | [diff] [blame] | 1 | <div id="form-container" class="form-container-footer"> |
| 2 | <form id="register-form" method="POST" action="/register" class="form-group-footer" onsubmit="return register()"> |
| 3 | <h3 id="error-message"></h3> |
| 4 | <div class="reg-inputs"> |
| 5 | <select id="network" name="domain" required> |
| 6 | <option value="" disabled selected>domain</option> |
| gio | 9633583 | 2024-07-12 20:07:42 +0400 | [diff] [blame] | 7 | <option value="dodoapp.xyz">dodoapp.xyz</option> |
| 8 | </select> |
| Davit Tabidze | aec6d8a | 2024-07-29 18:30:09 +0400 | [diff] [blame] | 9 | <input id="subdomain" type="text" name="subdomain" placeholder="subdomain" required> |
| 10 | <select id="app-type" name="app-type" required> |
| 11 | <option value="" disabled selected>application type</option> |
| gio | 8fae3af | 2024-07-25 13:43:31 +0400 | [diff] [blame] | 12 | </select> |
| Davit Tabidze | aec6d8a | 2024-07-29 18:30:09 +0400 | [diff] [blame] | 13 | </div> |
| 14 | <textarea id="public-key" name="public-key" rows="2" placeholder="ssh public key"></textarea> |
| 15 | <button id="create-app-button" type="submit"> |
| 16 | <svg id="spinner" class="animated-spinner" fill="none" height="18" width="18" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" style="display: none;"> |
| 17 | <g> |
| 18 | <circle cx="12" cy="12" r="10" fill="none" stroke="currentColor" stroke-width="4" /> |
| 19 | </g> |
| 20 | </svg> |
| 21 | create first app |
| 22 | </button> |
| 23 | </form> |
| Davit Tabidze | 71eecce | 2024-06-25 15:00:55 +0400 | [diff] [blame] | 24 | </div> |