aboutsummaryrefslogtreecommitdiff
path: root/templates/servers.html
blob: 8728f24d68592537023d6ff3e20797b733531d82 (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
26
27
28
<!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>
        <ul>
        {{range .Ideezes}}
        <li><a href="{{$.Address}}/server/{{.Id}}/">{{.Name}}</a></li>
        {{end}}
        <ul>
    </body>
</html>