diff --git a/webapp/components/Registration/CreateUserAccount.spec.js b/webapp/components/Registration/CreateUserAccount.spec.js index 81f825956..8d1f1617d 100644 --- a/webapp/components/Registration/CreateUserAccount.spec.js +++ b/webapp/components/Registration/CreateUserAccount.spec.js @@ -66,6 +66,8 @@ describe('CreateUserAccount', () => { wrapper.find('input#checkbox0').setChecked() wrapper.find('input#checkbox1').setChecked() wrapper.find('input#checkbox2').setChecked() + wrapper.find('input#checkbox3').setChecked() + wrapper.find('input#checkbox4').setChecked() await wrapper.find('form').trigger('submit') await wrapper.html() } diff --git a/webapp/components/Registration/CreateUserAccount.vue b/webapp/components/Registration/CreateUserAccount.vue index 00466a2d3..695d5cac9 100644 --- a/webapp/components/Registration/CreateUserAccount.vue +++ b/webapp/components/Registration/CreateUserAccount.vue @@ -88,12 +88,33 @@ v-html="$t('components.registration.signup.form.minimum-age')" > + + + + + + + + {{ $t('actions.save') }} @@ -145,6 +166,8 @@ export default { termsAndConditionsConfirmed: false, dataPrivacy: false, minimumAge: false, + noCommercial: false, + noPolitical: false, } }, props: { diff --git a/webapp/locales/de.json b/webapp/locales/de.json index d0008f102..663106c6c 100644 --- a/webapp/locales/de.json +++ b/webapp/locales/de.json @@ -550,6 +550,8 @@ "terms-and-condition": "Ich stimme den Nutzungsbedingungen<\/ds-text><\/a>zu.", "data-privacy": "Ich habe die Datenschutzerklärung<\/ds-text><\/a> gelesen und verstanden", "minimum-age": "Ich bin 18 Jahre oder älter.", + "no-commercial": "Ich habe keine kommerziellen Absichten und ich repräsentiere kein kommerzielles Unternehmen oder Organisation.", + "no-political": "Ich bin nicht im Auftrag einer Partei oder politischen Organisation im Netzwerk. ", "invitation-code": "Dein Einladungscode lautet: {code}<\/b>", "errors": { "email-exists": "Es gibt schon ein Benutzerkonto mit dieser E-Mail Adresse!", diff --git a/webapp/locales/en.json b/webapp/locales/en.json index d1b815668..c10164a33 100644 --- a/webapp/locales/en.json +++ b/webapp/locales/en.json @@ -34,6 +34,8 @@ "terms-and-condition": "I confirm to the Terms and conditions.", "data-privacy": " I have read and understood the Privacy Statement ", "minimum-age": "I'm 18 years or older.", + "no-commercial": "I have no commercial interests and I am not representing a company or any other commercial organisation on the network.", + "no-political": "I am not on behalf of a party or political organization in the network.", "invitation-code": "Your invitation code is: {code}", "errors": { "email-exists": "There is already a user account with this e-mail address!",