0
Fork 0
mirror of https://projects.blender.org/infrastructure/gitea-custom.git synced 2025-01-05 06:10:11 -05:00
blender-projects-gitea-custom/templates/user/auth/link_account.tmpl
Pablo Vazquez bc97b622df Auth: Fix link account
Inputs must not be disabled otherwise it gives an error (field cannot be empty)
2023-02-08 17:13:41 +01:00

53 lines
1.8 KiB
Cheetah

{{template "base/head" .}}
<div role="main" aria-label="{{.Title}}" class="page-content user link-account">
<div class="ui middle very relaxed page grid">
<div class="column">
<div class="ui positive message flash-info">
<p>
Username and email already provided by Blender ID.<br/>
<strong>Press "Complete Registration" to continue.</strong>
</p>
</div>
<div class="ui tab {{if not .user_exists}}active{{end}}"
data-tab="auth-link-signup-tab">
{{/* template "user/auth/signup_inner" . */}}
<div class="ui container column fluid icon">
<h4 class="ui top attached header center">
{{.locale.Tr "auth.oauth_signup_title"}}
</h4>
<div class="ui attached segment">
<form class="ui form" action="{{.SignUpLink}}" method="post">
{{.CsrfTokenHtml}}
{{template "base/alert" .}}
<div class="disabled required inline field {{if and (.Err_UserName) (or (not .LinkAccountMode) (and .LinkAccountMode .LinkAccountModeRegister))}}error{{end}}">
<label for="user_name">{{.locale.Tr "username"}}</label>
<input id="user_name" type="text" name="user_name" value="{{.user_name}}" required style="opacity: var(--opacity-disabled)">
</div>
<div class="disabled required inline field {{if .Err_Email}}error{{end}}">
<label for="email">{{.locale.Tr "email"}}</label>
<input id="email" name="email" type="email" value="{{.email}}" required style="opacity: var(--opacity-disabled)">
</div>
<div class="inline field">
<label></label>
<button class="ui green button">
<span class="pr-2">{{svg "octicon-check"}}</span>
{{/* .locale.Tr "auth.oauth_signup_submit" */}}
Complete Registration
</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
{{template "base/footer" .}}