Blame view
src/components/Otp.vue
5.55 KB
5684145ce
|
1 2 3 4 |
<template> <main class="landing-page"> <div class="container-fluid main-wrp"> <nav class="navbar navbar-expand-sm spotLight-nav"> |
56f4b7548
|
5 |
<a class="navbar-brand" href="javascript:void(0);" |
5684145ce
|
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
><img src="../assets/images/logo.png" /></a> <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExample03" aria-controls="navbarsExample03" aria-expanded="false" aria-label="Toggle navigation" > <span class="navbar-toggler-icon"></span> <span class="navbar-toggler-icon"></span> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarsExample03"> <ul class="navbar-nav mr-auto"> <li class="nav-item active"> |
56f4b7548
|
25 |
<a class="nav-link" href="javascript:void(0);">About</a> |
5684145ce
|
26 27 |
</li> <li class="nav-item"> |
56f4b7548
|
28 |
<a class="nav-link" href="javascript:void(0);">Masterclass</a> |
5684145ce
|
29 30 |
</li> <li class="nav-item"> |
56f4b7548
|
31 |
<a class="nav-link" href="javascript:void(0);">Stories</a> |
5684145ce
|
32 33 |
</li> <li class="nav-item spotLight-img"> |
56f4b7548
|
34 |
<a class="nav-link" href="javascript:void(0);" |
5684145ce
|
35 36 37 38 |
><img src="../assets/images/SPOTLight.svg" /></a> </li> <li class="nav-item"> |
56f4b7548
|
39 |
<a class="nav-link" href="javascript:void(0);">Library</a> |
5684145ce
|
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
</li> </ul> </div> </nav> <!-- menu wrapper --> <div class="sign-wrp"> <div class="row col-reverse"> <div class="col-sm-3 col-md-1 col-lg-1 col-xl-3"></div> <!-- users land image --> <div class="col-sm-5 col-md-6 col-lg-7 col-xl-4 wc-spc-lf-tp"> <h1 class="welcome-hd-back"> Welcome <br /> back </h1> </div> <!-- users land image --> <div class="col-sm-4 col-md-4 col-lg-4 col-xl-4"> <div class="form-layout signup-frm-spc"> <form> <!-- <h5>SignUp Using</h5> --> <div class="social-login" style="visibility: hidden"> <ul> <li> |
56f4b7548
|
63 |
<a href="javascript:void(0);"><img src="../assets/images/google.svg" /></a> |
5684145ce
|
64 65 |
</li> <li> |
56f4b7548
|
66 |
<a href="javascript:void(0);"><img src="../assets/images/linkdin.svg" /></a> |
5684145ce
|
67 68 |
</li> <li> |
56f4b7548
|
69 |
<a href="javascript:void(0);"><img src="../assets/images/twitter.svg" /></a> |
5684145ce
|
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
</li> </ul> </div> <h5> Please enter the OTP shared to {{email}} to confirm your email address </h5> <div class="fill-form"> <label for="inputEmail" class="sr-only">OTP</label> <input type="text" id="inputEmail" class="form-control" placeholder="Your OTP" v-model="otp" /> <!-- <label for="inputPassword" class="sr-only">Password</label> <input type="password" id="inputPassword" class="form-control" placeholder="Password" required> --> <a href="javascript:void(0);" class="btn btn-lg sb-button" @click="verifyOtp"> |
d974d3228
|
91 |
<img src="../assets/images/check-circle.png" /> Verify Email |
5684145ce
|
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 |
Address </a> <p class="forget-pass">Didn’t Get the OTP? <a @click="ResendEmail(true)">Resend</a></p> <!-- <h3>Didn’t Get the OTP?<a @click="goToLogin">Login</a></h3> --> </div> </form> </div> </div> <!-- sign up --> </div> </div> <!-- body wrapper --> </div> </main> </template> <script> import Vue from "vue"; import router from "../router"; import axios from "axios"; export default { name: "Otp", data() { return { email:null, otp:null, }; }, mounted() { this.email = localStorage.getItem("spotlight_email"); console.log("this.$route.params.flag",this.$route.params.flag) if(this.$route.params.flag == true){ this.ResendEmail(false); } }, methods: { goToLogin() { |
56f4b7548
|
132 |
this.$router.push("/login"); |
5684145ce
|
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 |
}, verifyOtp(){ axios .get(`/verifyEmail?email=${this.email}&otp=${this.otp}`, this.userData) .then((response) => { console.log("otp response",response); this.$toaster.success(response.data.message) if(response.data.status == 'success'){ localStorage.setItem('spotlight_usertoken', JSON.stringify(response.data.data)) this.$router.push("/profile"); } }) .catch( (error) =>{ if (error.response) { this.$toaster.error(error.response.data.message) } }); }, ResendEmail(req){ axios .post("/forgotPassword", {'email':this.email,'forgotPassword':false}) .then((response) => { console.log("forgotPassword- response",response) if(req){ this.$toaster.success(response.data.message) } }) .catch( (error) =>{ if (error.response) { this.$toaster.error(error.response.data.message) } }); } }, }; </script> |