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 @@ +
+
diff --git a/src/auth/RegisterPage.vue b/src/auth/RegisterPage.vue index db7c8a4..7324f67 100644 --- a/src/auth/RegisterPage.vue +++ b/src/auth/RegisterPage.vue @@ -26,31 +26,31 @@ {{messages.message_request_promoCode}}
-
- -
-
{{messages.err_noPaymentMethods}}
-
-
- - - -
+ + + + + + + + + + -
-
- - - - -
-
-
{{ errors.first('paymentInfo') }}
-
{{ errors.first('paymentMethod') }}
-
{{ errors.first('paymentMethodInfo') }}
-
{{ errors.first('paymentMethodType') }}
-
{{ errors.first('paymentMethodService') }}
-
+ + + + + + + + + + + + + +
@@ -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,