diff --git a/app/locales/taiga/locale-en.json b/app/locales/taiga/locale-en.json index b18a1755..2a6b39c1 100644 --- a/app/locales/taiga/locale-en.json +++ b/app/locales/taiga/locale-en.json @@ -1347,7 +1347,7 @@ "NEW_USER": "{{username}} has joined Taiga" }, "LEGAL": { - "TERMS_OF_SERVICE_AND_PRIVACY_POLICY_AD": "By clicking \"Sign up\"', you agree to our
terms of service and privacy policy." + "TERMS_OF_SERVICE_AND_PRIVACY_POLICY_AD": "When creating a new account, you agree to our
terms of service and privacy policy." }, "EXTERNAL_APP": { "PAGE_TITLE": "An external app requires authentication", diff --git a/app/partials/includes/modules/register-form.jade b/app/partials/includes/modules/register-form.jade index 4d9d8c56..52426fd6 100644 --- a/app/partials/includes/modules/register-form.jade +++ b/app/partials/includes/modules/register-form.jade @@ -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