blob: 6e6fccde9c237eadcca41bb6704349d15d16b8de (
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
|
{{ define "main" }}
<header>
<a href="/"><h1>Cloud Maker</h1></a>
<a href="/"><img src="/static/icons/bs/house-door.svg"></a>
</header>
<form id="profile" name="profile" method="POST">
<h2>Profile</h2>
<label for="username">Username</label>
<input id="username" name="username" value="{{.Username}}" required>
<label for="password">New Password</label>
<input type="password" id="password" name="password">
<label for="confirm-pass">Confirm Password</label>
<input type="password" id="confirm-pass" name="confirm-pass">
<button>Update</button>
{{ if .Message }}
<p class="{{.Status}}">{{ .Message }}</p>
{{ end }}
</form>
{{ end }}
|