forgetpassword.vue
9.86 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
<template>
<v-app id="login">
<v-toolbar class="fixcolors">
<v-toolbar-items>
<img src="/static/icon.jpeg" height="36" alt="logo">
<h3 class="white--text my-3 ml-5 logoSchool">Technology Succes</h3>
</v-toolbar-items>
</v-toolbar>
<v-container fluid>
<v-layout align-center justify-center fill-height>
<v-flex xs12 sm8 md7 lg8>
<div>
<v-app>
<v-stepper v-model="e2">
<v-stepper-header>
<v-stepper-step :complete="e2 > 1" step="1">Fill Your Email</v-stepper-step>
<v-divider></v-divider>
<v-stepper-step step="2">Last Step of Forget Password</v-stepper-step>
</v-stepper-header>
<v-stepper-items>
<v-stepper-content step="1">
<v-content>
<v-container fluid class="content">
<v-layout align-center justify-center fill-height>
<v-flex xs12 sm8 md7 lg8>
<v-toolbar class="fixcolors" dark>
<v-spacer></v-spacer>
<v-toolbar-title>Forget Password</v-toolbar-title>
<v-spacer></v-spacer>
</v-toolbar>
<v-card class="elevation-1 pa-1">
<v-card-text>
<h5 class="text-xs-center"> Not to Worry! Enter to your registered Email ID. </h5>
<h5 class="text-xs-center"> We'll send you a reset.</h5>
<v-flex lg6 sm6 xs10 offset-sm3 offset-xs1 offset-lg3>
<v-form ref="form" v-model="valid" lazy-validation>
<div class="custom-input-align">
<v-text-field
class="text-md-center"
:rules="emailRules"
v-model="forgetemail"
label="Enter Your email ID"
required></v-text-field>
</div>
</v-form>
</v-flex>
</v-card-text>
<v-card-actions>
<v-flex text-xs-center>
<v-btn round class="mt-1 button fixcolors" dark large @click="reset">Send Request</v-btn>
</v-flex>
</v-card-actions>
<v-snackbar
:timeout="timeout"
:top="y === 'top'"
:right="x === 'right'"
:vertical="mode === 'vertical'"
v-model="snackbar"
:color= color
>
{{ text }}
</v-snackbar>
</v-snackbar>
</v-card>
</v-flex>
</v-layout>
</v-container>
</v-content>
</v-stepper-content>
<v-stepper-content step="2">
<v-content>
<v-container fluid fill-height>
<v-layout align-center justify-center>
<v-flex xs12 sm8 md7 lg8>
<v-toolbar class="fixcolors" dark>
<v-spacer></v-spacer>
<v-toolbar-title>Forget Password</v-toolbar-title>
<v-spacer></v-spacer>
</v-toolbar>
<v-card class="elevation-1 pa-1">
<v-card-text>
<h5 class="text-xs-center"> Not to Worry! Enter to your registered Email ID And New Password. </h5>
<h5 class="text-xs-center"> We'll send you a reset.</h5>
<v-flex lg6 sm6 xs10 offset-sm3 offset-xs1 offset-lg3>
<v-form class="mt-4">
<div class="custom-input-align">
<v-text-field
class="text-md-center"
v-model="email"
:rules="emailRules"
label="Enter Your email ID"
required></v-text-field>
<v-text-field
:rules="[rules.required,rules.min]"
v-model="changepassword"
:append-icon="e1 ? 'visibility_off' : 'visibility'"
:append-icon-cb="() => (e1 = !e1)"
:type="e1 ? 'password' : 'text'"
name="input-10-1"
label="Password"
counter
></v-text-field>
</div>
</v-form>
</v-flex>
</v-card-text>
<v-card-actions>
<v-flex text-xs-center>
<v-btn round class="mt-1 button fixcolors" dark large @click="resetPassword">Send Request</v-btn>
</v-flex>
</v-card-actions>
<v-snackbar
:timeout="timeout"
:top="y === 'top'"
:right="x === 'right'"
:vertical="mode === 'vertical'"
v-model="snackbar"
:color= color
>
{{ text }}
</v-snackbar>
</v-snackbar>
</v-card>
</v-flex>
</v-layout>
</v-container>
</v-content>
<v-btn
color="primary"
dark
@click="e2 = 1"
>
Back
</v-btn>
</v-stepper-content>
</v-stepper-items>
</v-stepper>
</v-app>
</div>
</v-flex>
</v-layout>
</v-container>
<v-footer class="pa-4 fixcolors">
</v-footer>
</v-app>
</template>
<script>
import http from '@/Services/http.js';
export default {
data: () => ({
e1: true,
e2:0,
snackbar: false,
y: 'top',
x: 'right',
mode: '',
timeout: 4000,
text: '',
loading: false,
email: '',
forgetemail:'',
password:'',
changepassword:'',
valid: true,
emailRules: [
v => !!v || "E-mail is required",
v =>
/^\w+([.-]?\w+)*@\w+([.-]?\w+)*(\.\w{2,3})+$/.test(v) ||
"E-mail must be valid"
],
rules: {
required: value => !!value || "password is Required.",
min: v =>
(/^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.*[!@#$%^&*])(?=.{8,})/.test(
v
) &&
v.length >= 6) ||
"Min 4 characters upper case lower case symbol required"
}
}),
methods: {
reset () {
if (this.$refs.form.validate()) {
http().get('/schoolForgotPassword?email='+ this.forgetemail)
.then(response => {
// console.log("response=====>",response.data.data.token);
this.$store.dispatch("setToken", response.data.data.token);
this.loading = true;
this.e2 = 2 ;
if(this.snackbar=true){
this.text= "Please you Fill Last Step of Forget Password!"
}
}).catch(err => {
this.text="User Not Found or Incorrect Email"
this.snackbar= true;
this.loading = false;
})
}
},
resetPassword(){
let forgotPassword = {
resetToken: this.$store.state.token,
email: this.email,
password: this.changepassword
}
http().post('/schoolResetPassword',forgotPassword)
.then(response => {
console.log("response=====>",response);
this.loading = true;
if(this.snackbar=true){
this.text= "Successfully Change your Password"
}
setTimeout(() => {
this.$router.push('/');
}, 1000);
}).catch(err => {
this.text="User Not Found or Incorrect Email"
this.snackbar= true;
this.loading = false;
})
}
},
computed:{
color(){
return this.loading ? 'success' : 'error'
}
}
};
</script>
<style scoped lang="css">
.content {
padding: 100px 0px 100px 0px !important;
}
#login {
height: 50%;
width: 100%;
position: absolute;
top: 0;
left: 0;
content: "";
z-index: 0;
}
img{
position:absolute;
top:13px;
left:8px;
}
.v-btn--large {
padding: 0px 74px;
}
.button{
text-transform: none;
}
@media screen and (max-width: 472px) {
.v-btn--large {
padding:0px 20px !important;
font-size:13px;
}
h5 {
font-size: 11px;
}
}
@media screen and (max-width: 600px) {
.theme--light .v-btn, .application .theme--light.v-btn {
color: white !important;
}
img{
top: 21px;
left: 10px;
height: 24px;
width: 33px;
}
.logoSchool{
font-size: 18px;
margin-top: 20px !important;
}
.content {
padding: 0px 0px 0px 0px !important;
}
}
</style>