2023-04-23 10:21:21 +00:00
|
|
|
{{template "admin/layout_head" (dict "ctxData" . "pageClass" "admin new authentication")}}
|
|
|
|
<div class="admin-setting-content">
|
2017-03-15 22:39:38 +00:00
|
|
|
<h4 class="ui top attached header">
|
2022-06-27 20:58:46 +00:00
|
|
|
{{.locale.Tr "admin.auths.new"}}
|
2017-03-15 22:39:38 +00:00
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
<form class="ui form" action="{{.Link}}" method="post">
|
2021-10-18 22:08:41 +00:00
|
|
|
{{template "base/disable_form_autofill"}}
|
2017-03-15 22:39:38 +00:00
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<!-- Types and name -->
|
|
|
|
<div class="inline required field {{if .Err_Type}}error{{end}}">
|
2022-06-27 20:58:46 +00:00
|
|
|
<label>{{.locale.Tr "admin.auths.auth_type"}}</label>
|
2017-03-15 22:39:38 +00:00
|
|
|
<div class="ui selection type dropdown">
|
2022-03-10 22:40:43 +00:00
|
|
|
<input type="hidden" id="auth_type" name="type" value="{{.type}}">
|
2017-03-15 22:39:38 +00:00
|
|
|
<div class="text">{{.CurrentTypeName}}</div>
|
2020-10-31 22:15:11 +00:00
|
|
|
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
|
2017-03-15 22:39:38 +00:00
|
|
|
<div class="menu">
|
|
|
|
{{range .AuthSources}}
|
2021-07-25 07:09:52 +00:00
|
|
|
<div class="item" data-value="{{.Type.Int}}">{{.Name}}</div>
|
2017-03-15 22:39:38 +00:00
|
|
|
{{end}}
|
2015-12-07 22:30:52 +00:00
|
|
|
</div>
|
2017-03-15 22:39:38 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="required inline field {{if .Err_Name}}error{{end}}">
|
2022-06-27 20:58:46 +00:00
|
|
|
<label for="name">{{.locale.Tr "admin.auths.auth_name"}}</label>
|
2017-03-15 22:39:38 +00:00
|
|
|
<input id="name" name="name" value="{{.name}}" autofocus required>
|
|
|
|
</div>
|
2015-09-10 21:11:41 +00:00
|
|
|
|
2017-03-15 22:39:38 +00:00
|
|
|
<!-- LDAP and DLDAP -->
|
2022-08-31 15:58:54 +00:00
|
|
|
{{template "admin/auth/source/ldap" .}}
|
2015-09-10 21:11:41 +00:00
|
|
|
|
2017-03-15 22:39:38 +00:00
|
|
|
<!-- SMTP -->
|
2022-08-31 15:58:54 +00:00
|
|
|
{{template "admin/auth/source/smtp" .}}
|
2015-09-10 21:11:41 +00:00
|
|
|
|
2017-03-15 22:39:38 +00:00
|
|
|
<!-- PAM -->
|
2023-02-19 04:06:14 +00:00
|
|
|
<div class="pam required field {{if not (eq .type 4)}}gt-hidden{{end}}">
|
2022-06-27 20:58:46 +00:00
|
|
|
<label for="pam_service_name">{{.locale.Tr "admin.auths.pam_service_name"}}</label>
|
2023-03-27 16:05:51 +00:00
|
|
|
<input id="pam_service_name" name="pam_service_name" value="{{.pam_service_name}}">
|
2022-06-27 20:58:46 +00:00
|
|
|
<label for="pam_email_domain">{{.locale.Tr "admin.auths.pam_email_domain"}}</label>
|
2021-05-13 22:11:47 +00:00
|
|
|
<input id="pam_email_domain" name="pam_email_domain" value="{{.pam_email_domain}}">
|
2017-03-15 22:39:38 +00:00
|
|
|
</div>
|
2023-02-19 04:06:14 +00:00
|
|
|
<div class="pam optional field {{if not (eq .type 4)}}gt-hidden{{end}}">
|
2021-09-27 01:02:01 +00:00
|
|
|
<div class="ui checkbox">
|
2022-06-27 20:58:46 +00:00
|
|
|
<label for="skip_local_two_fa"><strong>{{.locale.Tr "admin.auths.skip_local_two_fa"}}</strong></label>
|
2021-09-27 01:02:01 +00:00
|
|
|
<input id="skip_local_two_fa" name="skip_local_two_fa" type="checkbox" {{if .skip_local_two_fa}}checked{{end}}>
|
2022-06-27 20:58:46 +00:00
|
|
|
<p class="help">{{.locale.Tr "admin.auths.skip_local_two_fa_helper"}}</p>
|
2021-09-27 01:02:01 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-02-22 07:14:37 +00:00
|
|
|
|
2017-03-15 22:39:38 +00:00
|
|
|
<!-- OAuth2 -->
|
2022-08-31 15:58:54 +00:00
|
|
|
{{template "admin/auth/source/oauth" .}}
|
2015-09-10 21:11:41 +00:00
|
|
|
|
2019-11-22 23:33:31 +00:00
|
|
|
<!-- SSPI -->
|
2022-08-31 15:58:54 +00:00
|
|
|
{{template "admin/auth/source/sspi" .}}
|
2019-11-22 23:33:31 +00:00
|
|
|
|
2017-03-15 22:39:38 +00:00
|
|
|
<div class="ldap field">
|
|
|
|
<div class="ui checkbox">
|
2022-06-27 20:58:46 +00:00
|
|
|
<label><strong>{{.locale.Tr "admin.auths.attributes_in_bind"}}</strong></label>
|
2017-03-15 22:39:38 +00:00
|
|
|
<input name="attributes_in_bind" type="checkbox" {{if .attributes_in_bind}}checked{{end}}>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-02-19 04:06:14 +00:00
|
|
|
<div class="ldap inline field {{if not (eq .type 2)}}gt-hidden{{end}}">
|
2017-05-10 13:10:18 +00:00
|
|
|
<div class="ui checkbox">
|
2022-06-27 20:58:46 +00:00
|
|
|
<label><strong>{{.locale.Tr "admin.auths.syncenabled"}}</strong></label>
|
2017-05-10 13:10:18 +00:00
|
|
|
<input name="is_sync_enabled" type="checkbox" {{if .is_sync_enabled}}checked{{end}}>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-03-15 22:39:38 +00:00
|
|
|
<div class="inline field">
|
|
|
|
<div class="ui checkbox">
|
2022-06-27 20:58:46 +00:00
|
|
|
<label><strong>{{.locale.Tr "admin.auths.activated"}}</strong></label>
|
2017-03-15 22:39:38 +00:00
|
|
|
<input name="is_active" type="checkbox" {{if .is_active}}checked{{end}}>
|
|
|
|
</div>
|
2015-12-07 22:30:52 +00:00
|
|
|
</div>
|
2015-09-10 21:11:41 +00:00
|
|
|
|
2017-03-15 22:39:38 +00:00
|
|
|
<div class="field">
|
2022-06-27 20:58:46 +00:00
|
|
|
<button class="ui green button">{{.locale.Tr "admin.auths.new"}}</button>
|
2015-12-07 22:30:52 +00:00
|
|
|
</div>
|
2017-03-15 22:39:38 +00:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<h4 class="ui top attached header">
|
2022-06-27 20:58:46 +00:00
|
|
|
{{.locale.Tr "admin.auths.tips"}}
|
2017-03-15 22:39:38 +00:00
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
<h5>GMail Settings:</h5>
|
|
|
|
<p>Host: smtp.gmail.com, Port: 587, Enable TLS Encryption: true</p>
|
2017-05-01 13:26:53 +00:00
|
|
|
|
2022-06-27 20:58:46 +00:00
|
|
|
<h5>{{.locale.Tr "admin.auths.tips.oauth2.general"}}:</h5>
|
|
|
|
<p>{{.locale.Tr "admin.auths.tips.oauth2.general.tip"}}</p>
|
2017-05-01 13:26:53 +00:00
|
|
|
|
2022-06-27 20:58:46 +00:00
|
|
|
<h5 class="ui top attached header">{{.locale.Tr "admin.auths.tip.oauth2_provider"}}</h5>
|
2017-05-01 13:26:53 +00:00
|
|
|
<div class="ui attached segment">
|
|
|
|
<li>Bitbucket</li>
|
2022-06-27 20:58:46 +00:00
|
|
|
<span>{{.locale.Tr "admin.auths.tip.bitbucket"}}</span>
|
2017-05-01 13:26:53 +00:00
|
|
|
<li>Dropbox</li>
|
2022-06-27 20:58:46 +00:00
|
|
|
<span>{{.locale.Tr "admin.auths.tip.dropbox"}}</span>
|
2017-05-01 13:26:53 +00:00
|
|
|
<li>Facebook</li>
|
2022-06-27 20:58:46 +00:00
|
|
|
<span>{{.locale.Tr "admin.auths.tip.facebook"}}</span>
|
2017-05-01 13:26:53 +00:00
|
|
|
<li>GitHub</li>
|
2022-06-27 20:58:46 +00:00
|
|
|
<span>{{.locale.Tr "admin.auths.tip.github"}}</span>
|
2017-05-01 13:26:53 +00:00
|
|
|
<li>GitLab</li>
|
2022-06-27 20:58:46 +00:00
|
|
|
<span>{{.locale.Tr "admin.auths.tip.gitlab"}}</span>
|
2019-09-14 10:02:39 +00:00
|
|
|
<li>Google</li>
|
2022-06-27 20:58:46 +00:00
|
|
|
<span>{{.locale.Tr "admin.auths.tip.google_plus"}}</span>
|
2017-05-01 13:26:53 +00:00
|
|
|
<li>OpenID Connect</li>
|
2022-06-27 20:58:46 +00:00
|
|
|
<span>{{.locale.Tr "admin.auths.tip.openid_connect"}}</span>
|
2017-05-01 13:26:53 +00:00
|
|
|
<li>Twitter</li>
|
2022-06-27 20:58:46 +00:00
|
|
|
<span>{{.locale.Tr "admin.auths.tip.twitter"}}</span>
|
2019-01-13 19:06:22 +00:00
|
|
|
<li>Discord</li>
|
2022-06-27 20:58:46 +00:00
|
|
|
<span>{{.locale.Tr "admin.auths.tip.discord"}}</span>
|
2019-09-13 02:15:36 +00:00
|
|
|
<li>Gitea</li>
|
2022-06-27 20:58:46 +00:00
|
|
|
<span>{{.locale.Tr "admin.auths.tip.gitea"}}</span>
|
2020-03-03 03:11:45 +00:00
|
|
|
<li>Nextcloud</li>
|
2022-06-27 20:58:46 +00:00
|
|
|
<span>{{.locale.Tr "admin.auths.tip.nextcloud"}}</span>
|
2020-03-04 22:08:52 +00:00
|
|
|
<li>Yandex</li>
|
2022-06-27 20:58:46 +00:00
|
|
|
<span>{{.locale.Tr "admin.auths.tip.yandex"}}</span>
|
2021-04-11 03:46:37 +00:00
|
|
|
<li>Mastodon</li>
|
2022-06-27 20:58:46 +00:00
|
|
|
<span>{{.locale.Tr "admin.auths.tip.mastodon"}}</span>
|
2017-05-01 13:26:53 +00:00
|
|
|
</div>
|
2015-12-07 22:30:52 +00:00
|
|
|
</div>
|
2014-05-03 02:48:14 +00:00
|
|
|
</div>
|
2023-04-23 10:21:21 +00:00
|
|
|
{{template "admin/layout_footer" .}}
|