diff --git a/src/account/NewNetworkPage.vue b/src/account/NewNetworkPage.vue
index c43815a..25fbff2 100644
--- a/src/account/NewNetworkPage.vue
+++ b/src/account/NewNetworkPage.vue
@@ -39,7 +39,8 @@
-
+
{{messages.messages.payment_first_details_with_promos}}
+
{{messages.title_account_promotions}}
@@ -47,11 +48,12 @@
{{messages['label_promotion_'+promo.name+'_description']}} |
-
+
{{messages.payment_first_details_with_promos_details}}
+
@@ -68,6 +70,8 @@
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -133,15 +133,15 @@ export default {
this.errors.add({field: 'confirmPassword', msg: this.messages['err_confirmPassword_mismatch']})
} else {
if (this.plan !== null) {
- if (this.paymentMethodObject === null) {
- this.errors.add({field: 'paymentMethod', msg: this.messages['err_paymentMethod_required']});
- return;
- } else {
+ // if (this.paymentMethodObject === null) {
+ // this.errors.add({field: 'paymentMethod', msg: this.messages['err_paymentMethod_required']});
+ // return;
+ // } else {
console.log('handleSubmit: setting this.user.preferredPlan = '+this.plan.uuid);
this.user.preferredPlan = this.plan.uuid;
- this.user.paymentMethodObject = this.paymentMethodObject;
- this.user.paymentMethodObject.cloud = this.selectedPaymentMethod.name;
- }
+ // this.user.paymentMethodObject = this.paymentMethodObject;
+ // this.user.paymentMethodObject.cloud = this.selectedPaymentMethod.name;
+ // }
}
this.register({
user: this.user,