aboutsummaryrefslogtreecommitdiff
path: root/templates/register.html
blob: b026d33a60605574f7c71e79bd5fc8b555e94eb9 (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
{{template "layout.html" .}}
{{define "title"}} Initial Setup {{end}}
{{define "content"}}
<h1>Initial Setup</h1>
<form action="/initial" method="post">
    <div class="field">
        <label class="label">Username</label>
        <div class="control">
            <input class="input" name="username" type="text">
        </div>
    </div>
    <div class="field">
        <label class="label">Password</label>
        <div class="control">
            <input class="input" name="password" type="password">
        </div>
    </div>
    <div class="field">
        <label class="label">Root folder</label>
        <div class="control">
            <input class="input" name="path" type="text">
        </div>
    </div>
    <div class="field">
        <input class="button is-pulled-right" value="Save" type="submit">
    </div>
</form>
{{end}}