| gio | 23bdc1b | 2024-07-11 16:07:47 +0400 | [diff] [blame] | 1 | <!DOCTYPE html> |
| 2 | <html lang='en'> |
| 3 | <head> |
| 4 | <title>dodo: app</title> |
| 5 | <meta charset='utf-8'> |
| 6 | </head> |
| 7 | <body> |
| gio | 11617ac | 2024-07-15 16:09:04 +0400 | [diff] [blame] | 8 | <form action="" method="POST"> |
| 9 | <select name="network"> |
| 10 | {{ range .Networks }} |
| 11 | <option value="{{ .Name }}">{{ .Name }} - {{ .Domain }}</option> |
| 12 | {{ end }} |
| 13 | </select> |
| 14 | <input type="text" name="admin-public-key" placeholder="Admin Public Key" /> |
| 15 | <button type="submit" name="create-app">Create App</button> |
| 16 | </form> |
| gio | 23bdc1b | 2024-07-11 16:07:47 +0400 | [diff] [blame] | 17 | {{ range .Apps }} |
| 18 | <a href="/{{ . }}">{{ . }}</a> |
| 19 | {{ end }} |
| 20 | </body> |
| 21 | </html> |