diff options
author | haixunlu <luhaixun@gmail.com> | 2018-12-18 12:49:30 -0800 |
---|---|---|
committer | 无闻 <u@gogs.io> | 2018-12-18 15:49:30 -0500 |
commit | 311df9c521f05cdca880152e73dbed47afb74cde (patch) | |
tree | f3b9159e6dc23e6659e1da5939ff7f09d7a32c16 /templates/admin | |
parent | ff93d9dbda5cebe90d86e4b7dfb2c6b8642970ce (diff) |
auth: add new authentication source: GitHub, including GitHub Enterprise (#5340)
* Add new Authentication Source: GitHub, including GitHub Enterprise.
* Add vendor dependencies.
Diffstat (limited to 'templates/admin')
-rw-r--r-- | templates/admin/auth/edit.tmpl | 8 | ||||
-rw-r--r-- | templates/admin/auth/new.tmpl | 8 |
2 files changed, 14 insertions, 2 deletions
diff --git a/templates/admin/auth/edit.tmpl b/templates/admin/auth/edit.tmpl index 1db69e69..85ae3eb0 100644 --- a/templates/admin/auth/edit.tmpl +++ b/templates/admin/auth/edit.tmpl @@ -168,6 +168,14 @@ </div> {{end}} + <!-- GitHub OAuth 2.0 --> + {{if .Source.IsGITHUB}} + {{ $cfg:=.Source.GITHUB }} + <div class="required field"> + <label for="github_api_endpoint">{{.i18n.Tr "admin.auths.github_api_endpoint"}}</label> + <input id="github_api_endpoint" name="github_api_endpoint" value="{{$cfg.ApiEndpoint}}" placeholder="e.g. https://api.github.com" required> + </div> + {{end}} <div class="inline field {{if not .Source.IsSMTP}}hide{{end}}"> <div class="ui checkbox"> <label><strong>{{.i18n.Tr "admin.auths.enable_tls"}}</strong></label> diff --git a/templates/admin/auth/new.tmpl b/templates/admin/auth/new.tmpl index fa4c1271..0fd768f0 100644 --- a/templates/admin/auth/new.tmpl +++ b/templates/admin/auth/new.tmpl @@ -157,7 +157,11 @@ <label for="pam_service_name">{{.i18n.Tr "admin.auths.pam_service_name"}}</label> <input id="pam_service_name" name="pam_service_name" value="{{.pam_service_name}}" /> </div> - + <!-- GitHub Oauth 2.0 --> + <div class="github required field {{if not (eq .type 6)}}hide{{end}}"> + <label for="github_api_endpoint">{{.i18n.Tr "admin.auths.github_api_endpoint"}}</label> + <input id="github_api_endpoint" name="github_api_endpoint" value="{{.github_api_endpoint}}" placeholder="e.g. https://api.github.com" /> + </div> <div class="ldap field"> <div class="ui checkbox"> <label><strong>{{.i18n.Tr "admin.auths.attributes_in_bind"}}</strong></label> @@ -183,7 +187,7 @@ <input name="is_active" type="checkbox" {{if .is_active}}checked{{end}}> </div> </div> - + <div class="inline field"> <div class="ui checkbox"> <label><strong>{{.i18n.Tr "admin.auths.default_auth"}}</strong></label> |