Skip to content

Commit d388efd

Browse files
committed
Redesign Work for login,register and password page
1 parent 81347c3 commit d388efd

File tree

13 files changed

+465
-173
lines changed

13 files changed

+465
-173
lines changed

public/images/eye-slash.svg

Lines changed: 5 additions & 0 deletions
Loading

public/images/eye.svg

Lines changed: 4 additions & 0 deletions
Loading

public/images/login_bg.png

4.2 MB
Loading
Lines changed: 7 additions & 0 deletions
Loading

public/images/social/fe_github.svg

Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 4 additions & 0 deletions
Loading
Lines changed: 15 additions & 0 deletions
Loading

resources/assets/sass/pages/login.scss

Lines changed: 127 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,4 +135,131 @@
135135
border-right: 1px solid #ccc;
136136
flex: 1;
137137
}
138+
}
139+
140+
.help-block .errorlist {
141+
margin: 0;
142+
}
143+
144+
145+
.reset_title {
146+
color: var(--Dark-Blue-500, #1C4DA1);
147+
148+
/* Display md/Montserrat Medium */
149+
font-family: Montserrat;
150+
font-size: 36px;
151+
font-style: normal;
152+
font-weight: 500;
153+
line-height: 44px; /* 122.222% */
154+
letter-spacing: -0.72px;
155+
padding-bottom: 40px;
156+
}
157+
.reset_description {
158+
color: var(--Slate-500, #333E48);
159+
160+
/* Text xl/Blinker Regular */
161+
font-family: Blinker;
162+
font-size: 20px;
163+
font-style: normal;
164+
font-weight: 400;
165+
line-height: 30px; /* 150% */
166+
padding-bottom: 40px;
167+
}
168+
169+
.codeweek-form-field input, .codeweek-form-field-wrapper input {
170+
padding-left: 1rem;
171+
padding-right: 1rem;
172+
}
173+
174+
#codeweek-login-page .codeweek-form-field{
175+
flex-direction: column;
176+
align-items: flex-start;
177+
}
178+
179+
#codeweek-forgotpassword-page .codeweek-form-field, .codeweek-form-field-searchable {
180+
display: flex;
181+
justify-content: stretch;
182+
flex: 1;
183+
align-items: flex-start;
184+
flex-direction: column;
185+
align-content: flex-start;
186+
}
187+
.codeweek-form-field-add {
188+
display: flex;
189+
flex: 1;
190+
flex-direction: row;
191+
align-items: center;
192+
}
193+
194+
@media screen and (max-width: 1080px) {
195+
.reset_title {
196+
color: var(--Dark-Blue-500, #1C4DA1);
197+
font-family: Montserrat;
198+
font-size: 30px;
199+
font-style: normal;
200+
font-weight: 400;
201+
line-height: 36px;
202+
letter-spacing: -0.72px;
203+
display: flex;
204+
padding-bottom: 24px;
205+
}
206+
207+
.reset_description {
208+
font-family: Blinker;
209+
font-size: 20px;
210+
font-style: normal;
211+
font-weight: 400;
212+
line-height: 30px; /* 150% */
213+
padding-bottom: 24px;
214+
}
215+
}
216+
217+
#codeweek-forgotpassword-page .codeweek-form-field label {
218+
margin-right: 10px;
219+
text-transform: capitalize;
220+
width: 100%;
221+
text-align: left;
222+
font-family: Blinker;
223+
font-size: 20px;
224+
font-style: normal;
225+
font-weight: 400;
226+
line-height: 30px;
227+
228+
}
229+
230+
#codeweek-forgotpassword-page input#email {
231+
border-radius: 24px;
232+
border: 2px solid var(--Dark-Blue-200, #A4B8D9);
233+
padding: 12px 0;
234+
color: var(--Slate-500, #333E48);
235+
font-family: Blinker;
236+
font-size: 20px;
237+
font-style: normal;
238+
font-weight: 400;
239+
line-height: 30px;
240+
}
241+
242+
#codeweek-login-page .bg-dark-blue-50 {
243+
--tw-bg-opacity: 1;
244+
background-color: rgb(232 237 246 / var(--tw-bg-opacity, 1));
245+
}
246+
247+
.text-dark-blue-400 {
248+
--tw-text-opacity: 1;
249+
color: rgb(73 113 180 / var(--tw-text-opacity, 1));
250+
}
251+
252+
.border-dark-blue-300 {
253+
--tw-border-opacity: 1;
254+
border-color: rgb(119 148 199 / var(--tw-border-opacity, 1));
255+
}
256+
257+
.border-dark-blue-200 {
258+
--tw-border-opacity: 1;
259+
border-color: rgb(164 184 217 / var(--tw-border-opacity, 1));
260+
}
261+
262+
.border-dark-blue-200 {
263+
--tw-border-opacity: 1;
264+
border-color: rgb(164 184 217 / var(--tw-border-opacity, 1));
138265
}

resources/lang/en/login.php

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,14 @@
2121

2222
'email' => 'E-Mail Address',
2323
'password' => 'Password',
24-
'remember' => 'Remember Me',
25-
'forgotten_password' => 'Forgot Your Password ?',
24+
'remember' => 'Keep me signed in',
25+
'forgotten_password' => 'Forgot Your Password',
2626
'no_account' => 'Don\'t have an account ?',
2727
'signup' => 'Sign Up',
2828
'reset' => 'Reset Your Password',
29-
'send_password' => 'Send Password Reset Link',
29+
'send_password' => 'Reset Password',
3030
'confirm_password' => 'Confirm Password',
31-
'name' => 'name',
32-
33-
];
31+
'name' => 'Fullname',
32+
'resetpage_title' => 'Forgotten your password?',
33+
'resetpage_description'=>'Confirm your email address below and we’ll send you instructions on how to create your new password',
34+
];

0 commit comments

Comments
 (0)