blob: 9a8791111de4a257c8a22c50d02275d11a3b4c29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="Ideez"/>
<meta property="og:description" content="Ideez is an app that you can storm with ideas, hoping to facilitate plans and brainstorms."/>
<meta property="og:image" content="/static/favicon.ico" />
<link rel="stylesheet" href="/static/main.css">
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<title>Servers</title>
</head>
<body>
{{ with .Error }}
<p class="error">{{.}}</p>
{{ end}}
<form method="post" action="/server/create/">
<input name="name" type="text" placeholder="Ideez Server Name" required>
<button>Create Server</button>
</form>
<hr>
</body>
</html>
|