disambiguate fresh start from adding recovery options
This commit is contained in:
parent
664786040b
commit
b38b19354e
|
@ -8,6 +8,7 @@ sign_in = Sign In
|
|||
sign_in_with = Sign In With
|
||||
sign_out = Sign Out
|
||||
sign_up = Register
|
||||
add_recovery = Add Email and Password (for Account Recovery)
|
||||
link_account = Link Account
|
||||
link_account_signin_or_signup = Sign in with existing credentials to link your existing account to this account. Or register a new one.
|
||||
register = Register
|
||||
|
|
|
@ -4,7 +4,11 @@
|
|||
<form class="ui form" action="{{.SignUpLink}}" method="post">
|
||||
{{.CsrfTokenHtml}}
|
||||
<h3 class="ui top attached header">
|
||||
{{.i18n.Tr "sign_up"}}
|
||||
{{if .LinkAccountMode}}
|
||||
{{.i18n.Tr "add_recovery"}}
|
||||
{{else}}
|
||||
{{.i18n.Tr "sign_up"}}
|
||||
{{end}}
|
||||
</h3>
|
||||
<div class="ui attached segment">
|
||||
{{if or (not .LinkAccountMode) (and .LinkAccountMode .LinkAccountModeRegister)}}
|
||||
|
|
Loading…
Reference in New Issue