Merge pull request #808 from taigaio/Enhancement-3706-signup-page-mention-alternate-login-options
Sign Up page should mention alternate login options such as GitHubstable
commit
a819fbfad8
|
@ -1347,7 +1347,7 @@
|
||||||
"NEW_USER": "{{username}} has joined Taiga"
|
"NEW_USER": "{{username}} has joined Taiga"
|
||||||
},
|
},
|
||||||
"LEGAL": {
|
"LEGAL": {
|
||||||
"TERMS_OF_SERVICE_AND_PRIVACY_POLICY_AD": "<span>By clicking \"Sign up\"', you agree to our <br /></span><a href=\"{{ termsOfServiceUrl }}\" title=\"See terms of service\" target=\"_blank\">terms of service</a><span> and </span><a href=\"{{ privacyPolicyUrl }}\" title=\"See privacy policy\" target=\"_blank\">privacy policy</a>."
|
"TERMS_OF_SERVICE_AND_PRIVACY_POLICY_AD": "<span>When creating a new account, you agree to our <br /></span><a href=\"{{ termsOfServiceUrl }}\" title=\"See terms of service\" target=\"_blank\">terms of service</a><span> and </span><a href=\"{{ privacyPolicyUrl }}\" title=\"See privacy policy\" target=\"_blank\">privacy policy</a>."
|
||||||
},
|
},
|
||||||
"EXTERNAL_APP": {
|
"EXTERNAL_APP": {
|
||||||
"PAGE_TITLE": "An external app requires authentication",
|
"PAGE_TITLE": "An external app requires authentication",
|
||||||
|
|
|
@ -4,7 +4,7 @@ div.register-form-container(tg-register)
|
||||||
fieldset
|
fieldset
|
||||||
input(
|
input(
|
||||||
type="text"
|
type="text"
|
||||||
autocorrect="off"
|
autocorrect="off"
|
||||||
autocapitalize="none"
|
autocapitalize="none"
|
||||||
name="username"
|
name="username"
|
||||||
ng-model="data.username"
|
ng-model="data.username"
|
||||||
|
@ -46,12 +46,17 @@ div.register-form-container(tg-register)
|
||||||
)
|
)
|
||||||
|
|
||||||
fieldset
|
fieldset
|
||||||
button.button-register.button-gray.submit-button(
|
button.button-register.button-green.submit-button(
|
||||||
type="submit"
|
type="submit"
|
||||||
title="{{'REGISTER_FORM.ACTION_SIGN_UP' | translate}}"
|
title="{{'REGISTER_FORM.ACTION_SIGN_UP' | translate}}"
|
||||||
translate="REGISTER_FORM.ACTION_SIGN_UP"
|
translate="REGISTER_FORM.ACTION_SIGN_UP"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
fieldset(
|
||||||
|
ng-repeat="plugin in contribPlugins|filter:{type: 'auth'}"
|
||||||
|
ng-include="plugin.template"
|
||||||
|
)
|
||||||
|
|
||||||
//- Only displays terms notice when terms plugin is loaded.
|
//- Only displays terms notice when terms plugin is loaded.
|
||||||
tg-terms-of-service-and-privacy-policy-notice
|
tg-terms-of-service-and-privacy-policy-notice
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue