aboutsummaryrefslogtreecommitdiff
path: root/templates/servers.html
blob: 9e0a43736325a2150c595d35c4987df733495f04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!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>Ideez</title>
    </head>
    <body>
        <h3>Create your ideez server!</h3>
        {{ 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</button>
        </form>
        <hr>
        <p>code at <a href="https://git.spacehb.net/ideez">https://git.spacehb.net/ideez</a></p>
    </body>
</html>