summaryrefslogtreecommitdiffstats
path: root/templates/admin/user/edit.tmpl
blob: af01489c0af26528eac40fe2a16048d273c362b3 (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
{{template "base/head" .}}
<div class="page-content admin edit user">
	{{template "admin/navbar" .}}
	<div class="ui container">
		{{template "base/alert" .}}
		<h4 class="ui top attached header">
			{{.i18n.Tr "admin.users.edit_account"}}
		</h4>
		<div class="ui attached segment">
			<form class="ui form" action="{{.Link}}" method="post">
				{{.CsrfTokenHtml}}
				<div class="field {{if .Err_UserName}}error{{end}}">
					<label for="user_name">{{.i18n.Tr "username"}}</label>
					<input id="user_name" name="user_name" value="{{.User.Name}}" autofocus {{if not .User.IsLocal }}disabled{{end}}>
				</div>
				<!-- Types and name -->
				<div class="inline required field {{if .Err_LoginType}}error{{end}}">
					<label>{{.i18n.Tr "admin.users.auth_source"}}</label>
					<div class="ui selection type dropdown">
						<input type="hidden" id="login_type" name="login_type" value="{{.LoginSource.Type}}-{{.LoginSource.ID}}" required>
						<div class="text">{{.i18n.Tr "admin.users.local"}}</div>
						{{svg "octicon-triangle-down" 14 "dropdown icon"}}
						<div class="menu">
							<div class="item" data-value="0-0">{{.i18n.Tr "admin.users.local"}}</div>
							{{range .Sources}}
								<div class="item" data-value="{{.Type}}-{{.ID}}">{{.Name}}</div>
							{{end}}
						</div>
					</div>
				</div>
				<div class="required non-local field {{if .Err_LoginName}}error{{end}} {{if eq .User.LoginSource 0}}hide{{end}}">
					<label for="login_name">{{.i18n.Tr "admin.users.auth_login_name"}}</label>
					<input id="login_name" name="login_name" value="{{.User.LoginName}}" autofocus>
				</div>
				<div class="field {{if .Err_FullName}}error{{end}}">
					<label for="full_name">{{.i18n.Tr "settings.full_name"}}</label>
					<input id="full_name" name="full_name" value="{{.User.FullName}}">
				</div>
				<div class="required field {{if .Err_Email}}error{{end}}">
					<label for="email">{{.i18n.Tr "email"}}</label>
					<input id="email" name="email" type="email" value="{{.User.Email}}" autofocus required>
				</div>
				<input class="fake" type="password">
				<div class="local field {{if .Err_Password}}error{{end}} {{if not (or (.User.IsLocal) (.User.IsOAuth2))}}hide{{end}}">
					<label for="password">{{.i18n.Tr "password"}}</label>
					<input id="password" name="password" type="password" autocomplete="new-password">
					<p class="help">{{.i18n.Tr "admin.users.password_helper"}}</p>
				</div>
				<div class="field {{if .Err_Website}}error{{end}}">
					<label for="website">{{.i18n.Tr "settings.website"}}</label>
					<input id="website" name="website" type="url" value="{{.User.Website}}" placeholder="e.g. http://mydomain.com or https://mydomain.com">
				</div>
				<div class="field {{if .Err_Location}}error{{end}}">
					<label for="location">{{.i18n.Tr "settings.location"}}</label>
					<input id="location" name="location" value="{{.User.Location}}">
				</div>

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

				<div class="inline field {{if .Err_MaxRepoCreation}}error{{end}}">
					<label for="max_repo_creation">{{.i18n.Tr "admin.users.max_repo_creation"}}</label>
					<input id="max_repo_creation" name="max_repo_creation" type="number" value="{{.User.MaxRepoCreation}}">
					<p class="help">{{.i18n.Tr "admin.users.max_repo_creation_desc"}}</p>
				</div>

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

				<div class="inline field">
					<div class="ui checkbox">
						<label><strong>{{.i18n.Tr "admin.users.is_activated"}}</strong></label>
						<input name="active" type="checkbox" {{if .User.IsActive}}checked{{end}}>
					</div>
				</div>
				<div class="inline field">
					<div class="ui checkbox">
						<label><strong>{{.i18n.Tr "admin.users.prohibit_login"}}</strong></label>
						<input name="prohibit_login" type="checkbox" {{if .User.ProhibitLogin}}checked{{end}} {{if (eq .User.ID .SignedUserID)}}disabled{{end}}>
					</div>
				</div>
				<div class="inline field">
					<div class="ui checkbox">
						<label><strong>{{.i18n.Tr "admin.users.is_admin"}}</strong></label>
						<input name="admin" type="checkbox" {{if .User.IsAdmin}}checked{{end}}>
					</div>
				</div>
				<div class="inline field">
					<div class="ui checkbox">
						<label><strong>{{.i18n.Tr "admin.users.is_restricted"}}</strong></label>
						<input name="restricted" type="checkbox" {{if .User.IsRestricted}}checked{{end}}>
					</div>
				</div>
				<div class="inline field">
					<div class="ui checkbox poping up" data-content="{{.i18n.Tr "admin.users.allow_git_hook_tooltip"}}" data-variation="very wide">
						<label><strong>{{.i18n.Tr "admin.users.allow_git_hook"}}</strong></label>
						<input name="allow_git_hook" type="checkbox" {{if .User.CanEditGitHook}}checked{{end}} {{if DisableGitHooks}}disabled{{end}}>
					</div>
				</div>
				<div class="inline field" {{if or (DisableImportLocal) (.DisableMigrations)}}hidden{{end}}>
					<div class="ui checkbox">
						<label><strong>{{.i18n.Tr "admin.users.allow_import_local"}}</strong></label>
						<input name="allow_import_local" type="checkbox" {{if .User.CanImportLocal}}checked{{end}} {{if DisableImportLocal}}disabled{{end}}>
					</div>
				</div>
				{{if not .DisableRegularOrgCreation}}
				<div class="inline field">
					<div class="ui checkbox">
						<label><strong>{{.i18n.Tr "admin.users.allow_create_organization"}}</strong></label>
						<input name="allow_create_organization" type="checkbox" {{if .User.CanCreateOrganization}}checked{{end}}>
					</div>
				</div>
				{{end}}

				{{if .TwoFactorEnabled}}
				<div class="ui divider"></div>
				<div class="inline field">
					<div class="ui checkbox">
						<label><strong>{{.i18n.Tr "admin.users.reset_2fa"}}</strong></label>
						<input name="reset_2fa" type="checkbox">
					</div>
				</div>
				{{end}}

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

				<div class="field">
					<button class="ui green button">{{.i18n.Tr "admin.users.update_profile"}}</button>
					<div class="ui red button delete-button" data-url="{{$.Link}}/delete" data-id="{{.User.ID}}">{{.i18n.Tr "admin.users.delete_account"}}</div>
				</div>
			</form>
		</div>
	</div>
</div>

<div class="ui small basic delete modal">
	<div class="ui icon header">
		{{svg "octicon-trash"}}
		{{.i18n.Tr "settings.delete_account_title"}}
	</div>
	<div class="content">
		<p>{{.i18n.Tr "settings.delete_account_desc"}}</p>
	</div>
	{{template "base/delete_modal_actions" .}}
</div>
{{template "base/footer" .}}