|
@@ -3,10 +3,20 @@
|
3
|
3
|
<!-- eslint-disable max-len -->
|
4
|
4
|
<div class="login-page">
|
5
|
5
|
<form id="signIn">
|
6
|
|
- <div class="form">
|
|
6
|
+ <div class="form col-md-12">
|
7
|
7
|
<div>
|
8
|
8
|
<h4>Login</h4>
|
9
|
9
|
</div>
|
|
10
|
+ <button
|
|
11
|
+ @click="routerGoTo('/user/register')"
|
|
12
|
+ class="btn"
|
|
13
|
+ style="margin:2px; color: #60CBEB"
|
|
14
|
+ >Register</button>
|
|
15
|
+ <button
|
|
16
|
+ @click="routerGoTo('/user/registeragency')"
|
|
17
|
+ class="btn"
|
|
18
|
+ style="margin:2px; color: #60CBEB"
|
|
19
|
+ >Agency Registration</button>
|
10
|
20
|
<div v-if="this.$store.state.authentication.status === 'error'">
|
11
|
21
|
<alert
|
12
|
22
|
:text="'User doesn\'t exist or Username and Password is incorrect'"
|
|
@@ -14,7 +24,7 @@
|
14
|
24
|
/>
|
15
|
25
|
</div>
|
16
|
26
|
<div class="row">
|
17
|
|
- <div class="col-md-11" style="margin-bottom: 1em">
|
|
27
|
+ <div class="col-md-12" style="margin-bottom: 1em">
|
18
|
28
|
<div class="input-group mb-3">
|
19
|
29
|
<div class="input-group-prepend">
|
20
|
30
|
<span class="input-group-text">
|
|
@@ -59,25 +69,8 @@
|
59
|
69
|
</div>
|
60
|
70
|
</div>
|
61
|
71
|
</div>
|
62
|
|
- <div class="form-group row"></div>
|
63
|
72
|
<button @click="Login()" class="btn btn-b-n" type="submit">Sign In</button>
|
64
|
73
|
<hr />
|
65
|
|
- <button
|
66
|
|
- @click="routerGoTo('/user/register')"
|
67
|
|
- class="btn"
|
68
|
|
- style="margin:2px"
|
69
|
|
- type="button"
|
70
|
|
- >Registration</button>
|
71
|
|
- <button
|
72
|
|
- @click="routerGoTo('/user/registeragency')"
|
73
|
|
- class="btn"
|
74
|
|
- style="margin:2px"
|
75
|
|
- >Agency Registration</button>
|
76
|
|
- </div>
|
77
|
|
- </form>
|
78
|
|
-
|
79
|
|
- <form id="forgot">
|
80
|
|
- <div class="form">
|
81
|
74
|
<h5>Trouble signing in?</h5>
|
82
|
75
|
<div>
|
83
|
76
|
<!-- <alert :text="'Username & password request email sent'" :type="'SUCCESS'" /> -->
|
|
@@ -91,9 +84,7 @@
|
91
|
84
|
</div>
|
92
|
85
|
</div>
|
93
|
86
|
<div class="form-group row"></div>
|
94
|
|
- <div class="offset-md-3 col-md-5">
|
95
|
|
- <button @click="SendMail()" class="btn btn-b-n" type="submit">Get Help</button>
|
96
|
|
- </div>
|
|
87
|
+ <button @click="SendMail()" class="btn btn-b-n" type="submit">Submit</button>
|
97
|
88
|
</div>
|
98
|
89
|
</form>
|
99
|
90
|
</div>
|