Reset.vue
4.67 KB
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
<template>
<main class="landing-page">
<div class="container-fluid main-wrp">
<nav class="navbar navbar-expand-sm spotLight-nav">
<a class="navbar-brand" href="javascript:void(0);"
><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="javascript:void(0);">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="javascript:void(0);">Masterclass</a>
</li>
<li class="nav-item">
<a class="nav-link" href="javascript:void(0);">Stories</a>
</li>
<li class="nav-item spotLight-img">
<a class="nav-link" href="javascript:void(0);"
><img src="../assets/images/SPOTLight.svg"
/></a>
</li>
<li class="nav-item">
<a class="nav-link" href="javascript:void(0);">Library</a>
</li>
</ul>
</div>
</nav>
<!-- menu wrapper -->
<div class="sign-login-wrp">
<!-- users land image -->
<div class="s-l-left-section">
<h1>
<!-- Welcome to <br />
Productgrowth -->
Hello, there!<br />
welcome to spotlight
</h1>
<ul class="sign-in-up-list">
<li>
<img src="../assets/images/check.svg" /><span
>Collaborate, Contribute and Explore with fellow product enthusiasts</span
>
</li>
<li>
<img src="../assets/images/check.svg" /><span
>Get access to insightful Case Studies and participate in Roundtables</span
>
</li>
<li>
<img src="../assets/images/check.svg" /><span
>Engage actively on the
Bounce Board - we’re all ears!
</span
>
</li>
</ul>
</div>
<!-- users land image -->
<div class="s-l-right-section">
<div class="form-layout reset-pass">
<form >
<h5>
Forgot password? Enter your Email <br /> ID to retrieve it
</h5>
<div class="fill-form">
<label for="inputEmail" class="sr-only">Email address</label>
<input
type="email"
id="inputEmail"
class="form-control"
placeholder="Your Email ID"
v-model="email"
/>
<a href="javascript:void(0);" class="btn btn-lg sb-button" type="submit" @click="forgotPassword">
<img src="../assets/images/key.svg" /> Reset Password
</a>
<h3 class="ft-normal">
<span>Go back to </span><a class="cursor-pointer no-underline" @click="goToLogin">Login</a><span> / </span
><a class="cursor-pointer no-underline" @click="goToSignUp">SignUp</a>
</h3>
</div>
</form>
</div>
</div>
<!-- sign up -->
</div>
<!-- body wrapper -->
</div>
<!-- main wrapper -->
</main>
</template>
<script>
import Vue from "vue";
import router from "../router";
import axios from "axios";
export default {
name: "Reset",
data() {
return {
email:null,
};
},
mounted() {},
methods: {
goToLogin() {
this.$router.push("/login");
},
goToSignUp() {
this.$router.push("/");
},
forgotPassword(){
axios
.post("/forgotPassword", {'email':this.email,'forgotPassword':true})
.then((response) => {
console.log("forgotPassword- response",response)
this.$toaster.success(response.data.message)
if(response.data.status == 'success'){
localStorage.setItem('spotlight_email', this.email);
this.$router.push("/changepassword");
}
})
.catch( (error) =>{
if (error.response) {
this.$toaster.error(error.response.data.message)
}
});
}
},
};
</script>