Blame view

src/components/Otp.vue 5.39 KB
5684145ce   Digvijay Singh   reset password,ot...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
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
132
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
  <template>
    <main class="landing-page">
      <div class="container-fluid main-wrp">
        <nav class="navbar navbar-expand-sm spotLight-nav">
          <a class="navbar-brand" href="#"
            ><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">
                <a class="nav-link" href="#">About</a>
              </li>
              <li class="nav-item">
                <a class="nav-link" href="#">Masterclass</a>
              </li>
              <li class="nav-item">
                <a class="nav-link" href="#">Stories</a>
              </li>
              <li class="nav-item spotLight-img">
                <a class="nav-link" href="#"
                  ><img src="../assets/images/SPOTLight.svg"
                /></a>
              </li>
              <li class="nav-item">
                <a class="nav-link" href="#">Library</a>
              </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>
                        <a href="#"><img src="../assets/images/google.svg" /></a>
                      </li>
                      <li>
                        <a href="#"><img src="../assets/images/linkdin.svg" /></a>
                      </li>
                      <li>
                        <a href="#"><img src="../assets/images/twitter.svg" /></a>
                      </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">
                      <img src="../assets/images/user-plus.svg" /> Verify Email
                      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() {
        this.$router.push("/");
      },
      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>