Merge pull request #808 from taigaio/Enhancement-3706-signup-page-mention-alternate-login-options

Sign Up page should mention alternate login options such as GitHub
stable
Xaviju 2016-01-08 08:37:58 +01:00
commit a819fbfad8
2 changed files with 8 additions and 3 deletions

View File

@ -1347,7 +1347,7 @@
"NEW_USER": "{{username}} has joined Taiga"
},
"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": {
"PAGE_TITLE": "An external app requires authentication",

View File

@ -4,7 +4,7 @@ div.register-form-container(tg-register)
fieldset
input(
type="text"
autocorrect="off"
autocorrect="off"
autocapitalize="none"
name="username"
ng-model="data.username"
@ -46,12 +46,17 @@ div.register-form-container(tg-register)
)
fieldset
button.button-register.button-gray.submit-button(
button.button-register.button-green.submit-button(
type="submit"
title="{{'REGISTER_FORM.ACTION_SIGN_UP' | translate}}"
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.
tg-terms-of-service-and-privacy-policy-notice