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 828cf7530..695d5cac9 100644
--- a/webapp/components/Registration/CreateUserAccount.vue
+++ b/webapp/components/Registration/CreateUserAccount.vue
@@ -95,12 +95,26 @@
v-html="$t('components.registration.signup.form.no-commercial')"
>
+
+
+
+
{{ $t('actions.save') }}
@@ -152,7 +166,8 @@ export default {
termsAndConditionsConfirmed: false,
dataPrivacy: false,
minimumAge: false,
- minimumAge: false,
+ noCommercial: false,
+ noPolitical: false,
}
},
props: {
diff --git a/webapp/locales/de.json b/webapp/locales/de.json
index 168ecc63f..c35d6d06e 100644
--- a/webapp/locales/de.json
+++ b/webapp/locales/de.json
@@ -496,6 +496,7 @@
"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 representiere 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 19470a322..b2698ff6a 100644
--- a/webapp/locales/en.json
+++ b/webapp/locales/en.json
@@ -34,7 +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-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!",