1{{ define "title" }}Setup — arche forge{{ end }}
2{{ define "srv_setup.html" }}{{ template "head" . }}
3<div class="container" style="max-width: 400px; margin-top: 60px">
4 <h2 style="margin-bottom: 8px">First-run setup</h2>
5 <p style="margin-bottom: 16px; color: #555; font-size: 13px">No users exist yet. Create the admin account.</p>
6 {{ if .Error }}
7 <p class="error">{{.Error}}</p>
8 {{ end }}
9 <form method="post" action="/setup">
10 <div class="field">
11 <label>Admin username</label>
12 <input type="text" name="username" autofocus autocomplete="username" />
13 </div>
14 <div class="field">
15 <label>Password</label>
16 <input type="password" name="password" autocomplete="new-password" />
17 </div>
18 <button type="submit">Create admin account</button>
19 </form>
20</div>
21{{ template "foot" . }}
22{{ end }}