2015-09-13 20:37:21 +05:30
|
|
|
{{template "base/head" .}}
|
2020-12-01 09:30:14 +05:30
|
|
|
<div class="page-content admin edit user">
|
2017-03-16 04:09:38 +05:30
|
|
|
{{template "admin/navbar" .}}
|
2015-12-08 04:00:52 +05:30
|
|
|
<div class="ui container">
|
2017-03-16 04:09:38 +05:30
|
|
|
{{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">
|
2021-10-19 03:38:41 +05:30
|
|
|
{{template "base/disable_form_autofill"}}
|
2017-03-16 04:09:38 +05:30
|
|
|
{{.CsrfTokenHtml}}
|
2021-01-10 17:44:02 +05:30
|
|
|
<div class="field {{if .Err_UserName}}error{{end}}">
|
2017-03-16 04:09:38 +05:30
|
|
|
<label for="user_name">{{.i18n.Tr "username"}}</label>
|
2021-01-10 17:44:02 +05:30
|
|
|
<input id="user_name" name="user_name" value="{{.User.Name}}" autofocus {{if not .User.IsLocal }}disabled{{end}}>
|
2017-03-16 04:09:38 +05:30
|
|
|
</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">
|
2021-08-12 02:12:58 +05:30
|
|
|
<input type="hidden" id="login_type" name="login_type" value="{{.LoginSource.Type.Int}}-{{.LoginSource.ID}}" required>
|
2017-03-16 04:09:38 +05:30
|
|
|
<div class="text">{{.i18n.Tr "admin.users.local"}}</div>
|
2020-11-01 03:45:11 +05:30
|
|
|
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
|
2017-03-16 04:09:38 +05:30
|
|
|
<div class="menu">
|
|
|
|
<div class="item" data-value="0-0">{{.i18n.Tr "admin.users.local"}}</div>
|
|
|
|
{{range .Sources}}
|
2021-08-12 02:12:58 +05:30
|
|
|
<div class="item" data-value="{{.Type.Int}}-{{.ID}}">{{.Name}}</div>
|
2017-03-16 04:09:38 +05:30
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-06-27 01:23:14 +05:30
|
|
|
|
|
|
|
<div class="inline field {{if .Err_Visibility}}error{{end}}">
|
|
|
|
<span class="inline required field"><label for="visibility">{{.i18n.Tr "settings.visibility"}}</label></span>
|
|
|
|
<div class="ui selection type dropdown">
|
2021-06-28 00:17:35 +05:30
|
|
|
{{if .User.Visibility.IsPublic}}<input type="hidden" id="visibility" name="visibility" value="0">{{end}}
|
|
|
|
{{if .User.Visibility.IsLimited}}<input type="hidden" id="visibility" name="visibility" value="1">{{end}}
|
|
|
|
{{if .User.Visibility.IsPrivate}}<input type="hidden" id="visibility" name="visibility" value="2">{{end}}
|
2021-06-27 01:23:14 +05:30
|
|
|
<div class="text">
|
2021-06-28 00:17:35 +05:30
|
|
|
{{if .User.Visibility.IsPublic}}{{.i18n.Tr "settings.visibility.public"}}{{end}}
|
|
|
|
{{if .User.Visibility.IsLimited}}{{.i18n.Tr "settings.visibility.limited"}}{{end}}
|
|
|
|
{{if .User.Visibility.IsPrivate}}{{.i18n.Tr "settings.visibility.private"}}{{end}}
|
2021-06-27 01:23:14 +05:30
|
|
|
</div>
|
|
|
|
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
|
|
|
|
<div class="menu">
|
2021-06-28 00:17:35 +05:30
|
|
|
{{range $mode := .AllowedUserVisibilityModes}}
|
|
|
|
{{if $mode.IsPublic}}
|
2021-11-18 08:56:50 +05:30
|
|
|
<div class="item tooltip" data-content="{{$.i18n.Tr "settings.visibility.public_tooltip"}}" data-value="0">{{$.i18n.Tr "settings.visibility.public"}}</div>
|
2021-06-28 00:17:35 +05:30
|
|
|
{{else if $mode.IsLimited}}
|
2021-11-18 08:56:50 +05:30
|
|
|
<div class="item tooltip" data-content="{{$.i18n.Tr "settings.visibility.limited_tooltip"}}" data-value="1">{{$.i18n.Tr "settings.visibility.limited"}}</div>
|
2021-06-28 00:17:35 +05:30
|
|
|
{{else if $mode.IsPrivate}}
|
2021-11-18 08:56:50 +05:30
|
|
|
<div class="item tooltip" data-content="{{$.i18n.Tr "settings.visibility.private_tooltip"}}" data-value="2">{{$.i18n.Tr "settings.visibility.private"}}</div>
|
2021-06-28 00:17:35 +05:30
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2021-06-27 01:23:14 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2017-03-16 04:09:38 +05:30
|
|
|
<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>
|
|
|
|
<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>
|
2020-10-09 13:02:30 +05:30
|
|
|
<input id="password" name="password" type="password" autocomplete="new-password">
|
2017-03-16 04:09:38 +05:30
|
|
|
<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>
|
2015-09-13 20:37:21 +05:30
|
|
|
|
2017-03-16 04:09:38 +05:30
|
|
|
<div class="ui divider"></div>
|
2015-12-10 23:07:53 +05:30
|
|
|
|
2017-03-16 04:09:38 +05:30
|
|
|
<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>
|
2015-12-10 23:07:53 +05:30
|
|
|
|
2017-03-16 04:09:38 +05:30
|
|
|
<div class="ui divider"></div>
|
2015-12-10 23:07:53 +05:30
|
|
|
|
2017-03-16 04:09:38 +05:30
|
|
|
<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>
|
2020-04-06 19:53:15 +05:30
|
|
|
<input name="prohibit_login" type="checkbox" {{if .User.ProhibitLogin}}checked{{end}} {{if (eq .User.ID .SignedUserID)}}disabled{{end}}>
|
2017-03-16 04:09:38 +05:30
|
|
|
</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>
|
2020-01-13 23:03:46 +05:30
|
|
|
<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>
|
2022-01-31 19:42:47 +05:30
|
|
|
<div class="inline field"{{if DisableGitHooks}} hidden{{end}}>
|
2021-11-18 08:56:50 +05:30
|
|
|
<div class="ui checkbox tooltip" data-content="{{.i18n.Tr "admin.users.allow_git_hook_tooltip"}}" data-variation="very wide">
|
2017-03-16 04:09:38 +05:30
|
|
|
<label><strong>{{.i18n.Tr "admin.users.allow_git_hook"}}</strong></label>
|
2017-09-12 14:55:42 +05:30
|
|
|
<input name="allow_git_hook" type="checkbox" {{if .User.CanEditGitHook}}checked{{end}} {{if DisableGitHooks}}disabled{{end}}>
|
2017-03-16 04:09:38 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
2020-12-21 20:09:41 +05:30
|
|
|
<div class="inline field" {{if or (DisableImportLocal) (.DisableMigrations)}}hidden{{end}}>
|
2017-03-16 04:09:38 +05:30
|
|
|
<div class="ui checkbox">
|
|
|
|
<label><strong>{{.i18n.Tr "admin.users.allow_import_local"}}</strong></label>
|
2018-08-24 10:30:22 +05:30
|
|
|
<input name="allow_import_local" type="checkbox" {{if .User.CanImportLocal}}checked{{end}} {{if DisableImportLocal}}disabled{{end}}>
|
2017-03-16 04:09:38 +05:30
|
|
|
</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}}
|
2015-09-13 20:37:21 +05:30
|
|
|
|
2021-01-05 19:24:48 +05:30
|
|
|
{{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}}
|
|
|
|
|
2017-03-16 04:09:38 +05:30
|
|
|
<div class="ui divider"></div>
|
2015-12-12 05:54:57 +05:30
|
|
|
|
2017-03-16 04:09:38 +05:30
|
|
|
<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>
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
2017-03-16 04:09:38 +05:30
|
|
|
</form>
|
2014-08-29 13:02:52 +05:30
|
|
|
</div>
|
2021-11-17 00:43:13 +05:30
|
|
|
|
|
|
|
<h4 class="ui top attached header">
|
|
|
|
{{.i18n.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 .User.UseCustomAvatar}}checked{{end}}>
|
|
|
|
<label>{{.i18n.Tr "settings.lookup_avatar_by_mail"}}</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="field {{if .Err_Gravatar}}error{{end}}">
|
|
|
|
<label for="gravatar">Avatar {{.i18n.Tr "email"}}</label>
|
|
|
|
<input id="gravatar" name="gravatar" value="{{.User.AvatarEmail}}" />
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
|
|
|
|
<div class="inline field">
|
|
|
|
<div class="ui radio checkbox">
|
|
|
|
<input name="source" value="local" type="radio" {{if .User.UseCustomAvatar}}checked{{end}}>
|
|
|
|
<label>{{.i18n.Tr "settings.enable_custom_avatar"}}</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="inline field">
|
|
|
|
<label for="avatar">{{.i18n.Tr "settings.choose_new_avatar"}}</label>
|
|
|
|
<input name="avatar" type="file" >
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="field">
|
|
|
|
<button class="ui green button">{{$.i18n.Tr "settings.update_avatar"}}</button>
|
|
|
|
<a class="ui red button delete-post" data-request-url="{{.Link}}/avatar/delete" data-done-url="{{.Link}}">{{$.i18n.Tr "settings.delete_current_avatar"}}</a>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
2014-03-21 15:45:58 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
2015-09-13 20:37:21 +05:30
|
|
|
|
|
|
|
<div class="ui small basic delete modal">
|
2015-12-08 04:00:52 +05:30
|
|
|
<div class="ui icon header">
|
2021-03-22 09:34:19 +05:30
|
|
|
{{svg "octicon-trash"}}
|
2015-12-08 04:00:52 +05:30
|
|
|
{{.i18n.Tr "settings.delete_account_title"}}
|
|
|
|
</div>
|
|
|
|
<div class="content">
|
|
|
|
<p>{{.i18n.Tr "settings.delete_account_desc"}}</p>
|
|
|
|
</div>
|
|
|
|
{{template "base/delete_modal_actions" .}}
|
2015-09-13 20:37:21 +05:30
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|