summaryrefslogtreecommitdiffstats
path: root/templates/user/settings/profile.tmpl
blob: a092a420324b45c50a2dc521afb35c04ede8ad2a (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
{{template "user/settings/layout_head" (dict "ctxData" . "pageClass" "user settings profile")}}
	<div class="user-setting-content">
		<h4 class="ui top attached header">
			{{ctx.Locale.Tr "settings.public_profile"}}
		</h4>
		<div class="ui attached segment">
			<p>{{ctx.Locale.Tr "settings.profile_desc"}}</p>
			<form class="ui form" action="{{.Link}}" method="post">
				{{.CsrfTokenHtml}}
				<div class="required field {{if .Err_Name}}error{{end}}">
					<label for="username">{{ctx.Locale.Tr "username"}}
						<span class="text red tw-hidden" id="name-change-prompt"> {{ctx.Locale.Tr "settings.change_username_prompt"}}</span>
						<span class="text red tw-hidden" id="name-change-redirect-prompt"> {{ctx.Locale.Tr "settings.change_username_redirect_prompt"}}</span>
					</label>
					<input id="username" name="name" value="{{.SignedUser.Name}}" data-name="{{.SignedUser.Name}}" autofocus required {{if or (not .SignedUser.IsLocal) .IsReverseProxy}}disabled{{end}} maxlength="40">
					{{if or (not .SignedUser.IsLocal) .IsReverseProxy}}
					<p class="help text blue">{{ctx.Locale.Tr "settings.password_username_disabled"}}</p>
					{{end}}
				</div>
				<div class="field {{if .Err_FullName}}error{{end}}">
					<label for="full_name">{{ctx.Locale.Tr "settings.full_name"}}</label>
					<input id="full_name" name="full_name" value="{{.SignedUser.FullName}}" maxlength="100">
				</div>
				<div class="inline field">
					<span class="inline field"><label for="pronouns">{{ctx.Locale.Tr "settings.pronouns"}}</label></span>
					<div id="pronouns-dropdown" style="display: none" class="ui selection dropdown">
						<input type="hidden" value="{{.SignedUser.Pronouns}}">
						<div class="text">
							{{if .PronounsAreCustom}}
								{{ctx.Locale.Tr "settings.pronouns_custom"}}
							{{else if eq "" .SignedUser.Pronouns}}
								{{ctx.Locale.Tr "settings.pronouns_unspecified"}}
							{{else}}
								{{.SignedUser.Pronouns}}
							{{end}}
						</div>
						{{svg "octicon-triangle-down" 14 "dropdown icon"}}
						<div class="menu">
							<div class="item{{if eq "" .SignedUser.Pronouns}} active selected{{end}}" data-value=""><p>{{ctx.Locale.Tr "settings.pronouns_unspecified"}}</p></div>
							<div class="item{{if eq "he/him" .SignedUser.Pronouns}} active selected{{end}}" data-value="he/him">he/him</div>
							<div class="item{{if eq "she/her" .SignedUser.Pronouns}} active selected{{end}}" data-value="she/her">she/her</div>
							<div class="item{{if eq "they/them" .SignedUser.Pronouns}} active selected{{end}}" data-value="they/them">they/them</div>
							<div class="item{{if eq "it/its" .SignedUser.Pronouns}} active selected{{end}}" data-value="it/its">it/its</div>
							<div class="item{{if eq "any pronouns" .SignedUser.Pronouns}} active selected{{end}}" data-value="any pronouns">any pronouns</div>
							{{if .PronounsAreCustom}}
								<div class="item active selected" data-value="{{.SignedUser.Pronouns}}"><p>{{ctx.Locale.Tr "settings.pronouns_custom"}}</p></div>
							{{else}}
								<div class="item" data-value="!"><i>{{ctx.Locale.Tr "settings.pronouns_custom"}}</i></div>
							{{end}}
						</div>
					</div>
					<input id="pronouns-custom" name="pronouns" value="{{.SignedUser.Pronouns}}" maxlength="50">
				</div>
				<div class="field {{if .Err_Email}}error{{end}}">
					<label>{{ctx.Locale.Tr "email"}}</label>
					<p id="signed-user-email">{{.SignedUser.Email}}</p>
				</div>
				<div class="field {{if .Err_Biography}}error{{end}}">
					<label for="biography">{{ctx.Locale.Tr "user.user_bio"}}</label>
					<textarea id="biography" name="biography" rows="2" placeholder="{{ctx.Locale.Tr "settings.biography_placeholder"}}" maxlength="255">{{.SignedUser.Description}}</textarea>
				</div>
				<div class="field {{if .Err_Website}}error{{end}}">
					<label for="website">{{ctx.Locale.Tr "settings.website"}}</label>
					<input id="website" name="website" type="url" value="{{.SignedUser.Website}}" maxlength="255">
				</div>
				<div class="field">
					<label for="location">{{ctx.Locale.Tr "settings.location"}}</label>
					<input id="location" name="location" placeholder="{{ctx.Locale.Tr "settings.location_placeholder"}}" value="{{.SignedUser.Location}}" maxlength="50">
				</div>

				<div class="divider"></div>
				<!-- private block -->

				<div class="field" id="privacy-user-settings">
					<label><strong>{{ctx.Locale.Tr "settings.privacy"}}</strong></label>
				</div>

				<div class="inline field {{if .Err_Visibility}}error{{end}}">
					<span class="inline required field"><label>{{ctx.Locale.Tr "settings.visibility"}}</label></span>
					<div class="ui selection type dropdown">
						{{if .SignedUser.Visibility.IsPublic}}<input type="hidden" id="visibility" name="visibility" value="0">{{end}}
						{{if .SignedUser.Visibility.IsLimited}}<input type="hidden" id="visibility" name="visibility" value="1">{{end}}
						{{if .SignedUser.Visibility.IsPrivate}}<input type="hidden" id="visibility" name="visibility" value="2">{{end}}
						<div class="text">
							{{if .SignedUser.Visibility.IsPublic}}{{ctx.Locale.Tr "settings.visibility.public"}}{{end}}
							{{if .SignedUser.Visibility.IsLimited}}{{ctx.Locale.Tr "settings.visibility.limited"}}{{end}}
							{{if .SignedUser.Visibility.IsPrivate}}{{ctx.Locale.Tr "settings.visibility.private"}}{{end}}
						</div>
						{{svg "octicon-triangle-down" 14 "dropdown icon"}}
						<div class="menu">
							{{range $mode := .AllowedUserVisibilityModes}}
								{{if $mode.IsPublic}}
									<div class="item" data-tooltip-content="{{ctx.Locale.Tr "settings.visibility.public_tooltip"}}" data-value="0">{{ctx.Locale.Tr "settings.visibility.public"}}</div>
								{{else if $mode.IsLimited}}
									<div class="item" data-tooltip-content="{{ctx.Locale.Tr "settings.visibility.limited_tooltip"}}" data-value="1">{{ctx.Locale.Tr "settings.visibility.limited"}}</div>
								{{else if $mode.IsPrivate}}
									<div class="item" data-tooltip-content="{{ctx.Locale.Tr "settings.visibility.private_tooltip"}}" data-value="2">{{ctx.Locale.Tr "settings.visibility.private"}}</div>
								{{end}}
							{{end}}
						</div>
					</div>
				</div>

				<div class="field">
					<div class="ui checkbox">
						<label>{{ctx.Locale.Tr "settings.keep_email_private"}}</label>
						<input name="keep_email_private" type="checkbox" {{if .SignedUser.KeepEmailPrivate}}checked{{end}}>
					</div>
					<span class="help tw-block">{{ctx.Locale.Tr "settings.keep_email_private_popup" .SignedUser.GetPlaceholderEmail}}</span>
				</div>

				<div class="field">
					<div class="ui checkbox" id="keep-activity-private">
						<label>{{ctx.Locale.Tr "settings.keep_activity_private"}}</label>
						<input name="keep_activity_private" type="checkbox" {{if .SignedUser.KeepActivityPrivate}}checked{{end}}>
					</div>
					<span class="help tw-block">{{ctx.Locale.Tr "settings.keep_activity_private.description" (printf "/%s?tab=activity" .SignedUser.Name)}}</span>
				</div>

				<div class="divider"></div>

				<div class="field">
					<button class="ui primary button">{{ctx.Locale.Tr "settings.update_profile"}}</button>
				</div>
			</form>
		</div>

		<h4 class="ui top attached header">
			{{ctx.Locale.Tr "settings.avatar"}}
		</h4>
		<div class="ui attached segment">
			<form class="ui form" action="{{.Link}}/avatar" method="post" enctype="multipart/form-data">
				{{.CsrfTokenHtml}}
				{{if not .DisableGravatar}}
				<div class="inline field">
					<div class="ui radio checkbox">
						<input name="source" value="lookup" type="radio" {{if not .SignedUser.UseCustomAvatar}}checked{{end}}>
						<label>{{ctx.Locale.Tr "settings.lookup_avatar_by_mail"}}</label>
					</div>
				</div>
				<div class="field tw-pl-4 {{if .Err_Gravatar}}error{{end}}">
					<label for="gravatar">Avatar {{ctx.Locale.Tr "email"}}</label>
					<input id="gravatar" name="gravatar" value="{{.SignedUser.AvatarEmail}}">
				</div>
				{{end}}

				<div class="inline field">
					<div class="ui radio checkbox">
						<input name="source" value="local" type="radio" {{if .SignedUser.UseCustomAvatar}}checked{{end}}>
						<label>{{ctx.Locale.Tr "settings.enable_custom_avatar"}}</label>
					</div>
				</div>

				<div class="inline field tw-pl-4">
					<label for="new-avatar">{{ctx.Locale.Tr "settings.choose_new_avatar"}}</label>
					<input id="new-avatar" name="avatar" type="file" accept="image/png,image/jpeg,image/gif,image/webp">
				</div>

				<div class="field">
					<button class="ui primary button">{{ctx.Locale.Tr "settings.update_avatar"}}</button>
					<button class="ui red button link-action" data-url="{{.Link}}/avatar/delete">{{ctx.Locale.Tr "settings.delete_current_avatar"}}</button>
				</div>
			</form>
		</div>
	</div>
{{template "user/settings/layout_footer" .}}