mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 01:03:39 +01:00
950f2e2074
* add google+ * sort signin oauth2 providers based on the name so order is always the same * update auth tip for google+ * add gitlab provider * add bitbucket provider (and some go fmt) * add twitter provider * add facebook provider * add dropbox provider * add openid connect provider incl. new format of tips section in "Add New Source" * lower the amount of disk storage for each session to prevent issues while building cross platform (and disk overflow) * imports according to goimport and code style * make it possible to set custom urls to gitlab and github provider (only these could have a different host) * split up oauth2 into multiple files * small typo in comment * fix indention * fix indentation * fix new line before external import * fix layout of signin part * update "broken" dependency
16 lines
399 B
Cheetah
16 lines
399 B
Cheetah
{{template "base/head" .}}
|
|
<div class="user link-account">
|
|
<div class="ui middle very relaxed page grid">
|
|
<div class="column">
|
|
<p class="large center">
|
|
{{.i18n.Tr "link_account_signin_or_signup"}}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="ui user signin container icon">
|
|
{{template "user/auth/signin_inner" .}}
|
|
</div>
|
|
{{template "user/auth/signup_inner" .}}
|
|
{{template "base/footer" .}}
|