blob: 00b21251c9ead5b38b4f5ca0c174f008b00cc39a (
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
29
30
31
32
33
34
35
36
37
|
{{template "header" .}}
<form method=post action="/settings">
<section>
<h2>Profile</h2>
<div class="row">
<div class="form-element">
<input name="name" id="name" type="text" value={{.Name}}>
<label for="name">Name</label>
</div>
<div class="form-element">
<input name="email" id="email" type="text" value={{.Email}}>
<label for="email">Email</label>
</div>
</div>
</section>
<section>
<h2>Last.fm</h2>
<div class="row">
<div class="form-element">
<input name="lfm_name" id="lfm_name" type="text" value={{.LfmName}}>
<label for="lfm_name">Username</label>
</div>
<div class="form-element">
<input name="lfm_password" id="lfm_password" type="password" value={{.LfmPassword}}>
<label for="lfm_password">Password</label>
</div>
</div>
</section>
<div class="row">
<input type="submit" value="SAVE">
</div>
</form>
{{template "footer"}}
|