Browse Source

removed form validation

readme
Mayank 5 years ago
parent
commit
4cf7cac4fe
  1. 27
      src/views/Home.vue

27
src/views/Home.vue

@ -53,6 +53,10 @@
inputClass="card-input w-100" inputClass="card-input w-100"
/> />
<!-- <p class="text-danger text-left align-self-start mt-1">
<small>{{ errorMessage }}</small>
</p>-->
<b-button <b-button
variant="success" variant="success"
size="lg" size="lg"
@ -81,8 +85,6 @@
</div> </div>
<b-progress :value="progress" height="1rem" class="onboarding-progress"></b-progress> <b-progress :value="progress" height="1rem" class="onboarding-progress"></b-progress>
<p v-if="errorMessage">{{ errorMessage }}</p>
</div> </div>
</template> </template>
@ -142,7 +144,6 @@ export default {
password: "", password: "",
confirmPassword: "", confirmPassword: "",
wifiPassword: "", wifiPassword: "",
errorMessage: "",
selectedWifi: "", selectedWifi: "",
steps: onboardingSteps, steps: onboardingSteps,
wifiNetworks: [ wifiNetworks: [
@ -186,18 +187,20 @@ export default {
const { onboardingStep } = this.$store.getters; const { onboardingStep } = this.$store.getters;
if (onboardingStep === 1) { if (onboardingStep === 1) {
if (!/^[A-Za-z ]+$/.test(this.name)) { // if (!/^[A-Za-z ]+$/.test(this.name)) {
return false; // return false;
} // }
if (this.name.length < 3) { // if (this.name.length < 3) {
return false; // return false;
} // }
return this.name.length;
} }
if (onboardingStep === 2) { if (onboardingStep === 2) {
if (this.password.length < 6) { // if (this.password.length < 6) {
return false; // return false;
} // }
return this.password.length;
} }
if (onboardingStep === 3) { if (onboardingStep === 3) {

Loading…
Cancel
Save