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