disambiguate fresh start from adding recovery options

This commit is contained in:
AJ ONeal 2018-10-03 06:50:14 +00:00
parent 664786040b
commit b38b19354e
2 changed files with 6 additions and 1 deletions

View File

@ -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

View File

@ -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)}}