Login.vue
4.94 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
<template>
<v-app id="login">
<v-toolbar class="fixcolor">
<v-toolbar-items>
<img src="/static/icon.jpeg" height="36" alt="logo">
<h3 class="white--text my-3 ml-5 logoSchool">School-Maagement</h3>
</v-toolbar-items>
</v-toolbar>
<v-content>
<v-container fluid fill-height>
<v-snackbar
:timeout="timeout"
:top="y === 'top'"
:right="x === 'right'"
:vertical="mode === 'vertical'"
v-model="snackbar"
:color="color"
>{{ text }}</v-snackbar>
<v-layout align-center justify-center>
<v-flex xs12 sm10 md6 lg4>
<v-toolbar class="fixcolor" dark>
<v-spacer></v-spacer>
<v-toolbar-title>School Login</v-toolbar-title>
<v-spacer></v-spacer>
</v-toolbar>
<v-card class="elevation-1 pa-1">
<v-card-text>
<v-flex xs12 sm12 md12 lg12>
<v-form ref="form" v-model="valid" lazy-validation>
<v-text-field
v-model="userLogincredentials.email"
:rules="nameRules"
label="Username"
required
></v-text-field>
<v-text-field
:rules="[rules.required]"
v-model="userLogincredentials.password"
: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>
</v-form>
<v-layout row wrap>
<v-flex xs6>
<!-- <v-checkbox :label="`Remember me`" v-model="remember"></v-checkbox> -->
</v-flex>
<v-flex xs6>
<h5 class="right mt-4"> <router-link class="link" to="/forgetpassword" style="border-bottom: 2px solid #aaa;">Forgot Password</router-link></h5>
</v-flex>
</v-layout>
</v-flex>
</v-card-text>
<v-layout>
<v-flex sm12 class="my-3">
<v-btn style="margin: auto;display: block;b" class="fixcolor" round dark large @click="login" :loading="loading">Login</v-btn>
</v-flex>
</v-layout>
<v-layout>
</v-layout>
</v-card>
</v-flex>
</v-layout>
</v-container>
</v-content>
<v-footer class="pa-4" style="background:linear-gradient(90deg,#f58753 30%,#f15e5f 110%)"></v-footer>
</v-app>
</template>
<script>
import http from "@/Services/http.js";
export default {
data() {
return {
snackbar: false,
y: "top",
x: "right",
mode: "",
timeout: 3000,
text: "",
e1: true,
loading: false,
remember: false,
valid: false,
userLogincredentials: {},
nameRules: [
v => !!v || "Username is required"
],
password: "",
email:"",
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: {
login() {
this.loading = true;
var userdata = {
email: this.userLogincredentials.email,
password: this.userLogincredentials.password,
role:"ADMIN"
};
http()
.post("/schoolLogin", userdata)
.then(response => {
this.$store.dispatch("setToken", response.data.data.token);
this.$store.dispatch("Id", response.data.data.id);
this.loading = false;
this.$router.push("/teachers");
})
.catch(error => {
this.text = error.response.data.message
this.snackbar = true;
this.loading = false;
});
this.$router.push("/teachers");
}
},
computed: {
color() {
return this.loading ? "success" : "error";
}
}
};
</script>
<style scoped lang="css">
#login {
width: 100%;
position: absolute;
top: 0;
left: 0;
content: "";
z-index: 0;
}
</style>
<style scoped>
img {
position: absolute;
top: 13px;
left: 8px;
}
.v-btn--large {
padding: 0px 84px;
}
.link{
text-decoration:none;
}
a {
color: #696969;
}
.forget{
margin-top:20px;
}
.mt-4 {
margin-top: 21px !important;
}
@media screen and (max-width: 600px) {
.forget{
margin-top:none;
margin-left:18px;
}
img{
top: 21px;
left: 10px;
height: 24px;
width: 33px;
}
.logoSchool{
font-size: 18px;
margin-top: 20px !important;
}
h5 {
font-size: 14px !important;
}
}
</style>