Commit d974d32288001d8f71e2a69dc4192a8a3d6efe51
1 parent
052b5bc331
Exists in
master
and in
1 other branch
changes
Showing
7 changed files
with
14 additions
and
7 deletions
Show diff stats
auth_config.json
src/assets/images/check-circle.png
392 Bytes
src/assets/images/password-reload.png
381 Bytes
src/assets/images/spotlight-icon.png
4.83 KB
src/components/ChangePassword.vue
... | ... | @@ -99,7 +99,7 @@ |
99 | 99 | <input type="password" id="inputPassword" class="form-control" placeholder="Password" required> --> |
100 | 100 | |
101 | 101 | <a href="javascript:void(0);" class="btn btn-lg sb-button" @click="changePassword"> |
102 | - <img src="../assets/images/user-plus.svg" />Change Password | |
102 | + <img src="../assets/images/password-reload.png" />Update Password | |
103 | 103 | </a> |
104 | 104 | <p class="forget-pass">Didn’t Get the OTP? <a @click="ResendEmail">Resend</a></p> |
105 | 105 | <!-- <h3>Didn’t Get the OTP?<a @click="goToLogin">Login</a></h3> --> | ... | ... |
src/components/LandingPage.vue
... | ... | @@ -63,10 +63,10 @@ |
63 | 63 | <a @click="login"><img src="../assets/images/google.svg" /></a> |
64 | 64 | </li> |
65 | 65 | <li> |
66 | - <a href="#"><img src="../assets/images/linkdin.svg" /></a> | |
66 | + <a @click="login"><img src="../assets/images/linkdin.svg" /></a> | |
67 | 67 | </li> |
68 | 68 | <li> |
69 | - <a href="#"><img src="../assets/images/twitter.svg" /></a> | |
69 | + <a @click="login"><img src="../assets/images/twitter.svg" /></a> | |
70 | 70 | </li> |
71 | 71 | </ul> |
72 | 72 | </div> |
... | ... | @@ -92,7 +92,7 @@ |
92 | 92 | <a href="javascript:void(0);" class="btn btn-lg sb-button" type="submit" @click="loginWIthEmail"> |
93 | 93 | <img src="../assets/images/key.svg" /> Log In to your account |
94 | 94 | </a> |
95 | - <p class="forget-pass"> | |
95 | + <p class="forget-pass light-font-weight"> | |
96 | 96 | Forgot Password? <a @click="goToReset">Reset</a> |
97 | 97 | </p> |
98 | 98 | <h3>Don’t have an account? <a @click="goToSignUp">SignUp</a></h3> |
... | ... | @@ -162,3 +162,10 @@ export default { |
162 | 162 | }, |
163 | 163 | }; |
164 | 164 | </script> |
165 | +<style> | |
166 | +.light-font-weight { | |
167 | + font-weight: 400 !important; | |
168 | +} | |
169 | + | |
170 | + | |
171 | +</style> | ... | ... |
src/components/Otp.vue
... | ... | @@ -88,7 +88,7 @@ |
88 | 88 | <input type="password" id="inputPassword" class="form-control" placeholder="Password" required> --> |
89 | 89 | |
90 | 90 | <a href="javascript:void(0);" class="btn btn-lg sb-button" @click="verifyOtp"> |
91 | - <img src="../assets/images/user-plus.svg" /> Verify Email | |
91 | + <img src="../assets/images/check-circle.png" /> Verify Email | |
92 | 92 | Address |
93 | 93 | </a> |
94 | 94 | <p class="forget-pass">Didn’t Get the OTP? <a @click="ResendEmail(true)">Resend</a></p> | ... | ... |