aboutsummaryrefslogtreecommitdiff
path: root/templates/profile.tmpl
blob: 0b2573cedfb99ba6a3615a4863588a768ae10a4b (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{{with .Data}}
{{template "header.tmpl" (WithContext .CommonData $.Ctx)}}
<h1>Edit Profile</h1>

<form action="/profile" method="POST" enctype="multipart/form-data">
	<input type="hidden" name="csrf_token" value="{{$.Ctx.CSRFToken}}">
	<input type="hidden" name="referrer" value="{{$.Ctx.Referrer}}">
	<div class="form-field">
		<div class="block-label">
			<label for="avatar">Avatar</label> -
			<input class="btn-link" type="submit" formaction="/profile/delavatar" formmethod="POST" value="delete">
		</div>
		<div class="profile-img-container">
			<a class="img-link" href="{{.User.Avatar}}" target="_blank">
				<img class="profile-avatar" src="{{.User.Avatar}}" alt="profile-avatar" height="96">
			</a>
		</div>
		<div><input id="avatar" name="avatar" type="file"></div>
	</div>
	<br class="hidden">
	<div class="form-field">
		<div class="block-label">
			<label for="banner">Banner</label> -
			<input class="btn-link" type="submit" formaction="/profile/delbanner" formmethod="POST" value="delete">
		</div>
		<div class="profile-img-container">
			<a class="img-link" href="{{.User.Header}}" target="_blank">
				<img class="profile-banner" src="{{.User.Header}}" alt="profile-banner" height="120">
			</a>
		</div>
		<input id="banner" name="banner" type="file">
	</div>
	<br class="hidden">
	<div class="form-field">
		<div class="block-label"><label for="name">Name</label></div>
		<div><input id="name" name="name" type="text" class="input-w" value="{{.User.DisplayName}}"></div>
	</div>
	<br class="hidden">
	<div class="form-field">
		<div class="block-label"><label for="bio">Bio</label></div>
		<textarea id="bio" name="bio" cols="80" rows="8">{{.User.Source.Note}}</textarea>
	</div>
	<br class="hidden">
	<div class="form-field">
		<div class="block-label"><label>Metadata</label></div>
		{{range $i, $f := .User.Source.Fields}}
		<div class="form-field">
			<input id="field-name-{{$i}}" name="field-name-{{$i}}" type="text" class="input-w" value="{{$f.Name}}" placeholder="name">
			<input id="field-value-{{$i}}" name="field-value-{{$i}}" type="text" class="input-w" value="{{$f.Value}}" placeholder="value">
		</div>
		{{end}}
	</div>
	<br class="hidden">
	<div class="form-field">
		<input id="locked" name="locked" type="checkbox" value="true" {{if .User.Locked}}checked{{end}}>
		<label for="locked">Require manual approval of follow requests</label>
	</div>
	<br class="hidden">
	<button type="submit"> Save </button>
	<button type="reset"> Reset </button>
</form>

{{template "footer.tmpl"}}
{{end}}