File tree Expand file tree Collapse file tree 6 files changed +88
-210
lines changed Expand file tree Collapse file tree 6 files changed +88
-210
lines changed Original file line number Diff line number Diff line change @@ -89,9 +89,9 @@ export const Login = () => {
89
89
< label htmlFor = "password" > Password</ label >
90
90
< input type = "password" placeholder = "Password" id = "password"
91
91
value = { password } onChange = { ( e ) => handleInputChange ( e ) } data-testid = "login-password" />
92
- < input type = "checkbox" id = "keepLoggedIn"
92
+ < input className = "checkbox" type = "checkbox" id = "keepLoggedIn"
93
93
value = { keepLoggedIn } onChange = { handleKeepLoggedInChange } />
94
- < label htmlFor = "keepLoggedIn" > Keep me logged in</ label >
94
+ < label className = "login" htmlFor = "keepLoggedIn" > Keep me logged in</ label >
95
95
< button onClick = { ( ) => AuthenticateUser ( ) } type = "submit" id = "loginButton" data-testid = "login-submit" > Log In</ button >
96
96
< a href = "/signup" className = "login" data-testid = "link" > Want to create a new account?</ a >
97
97
</ div >
Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ export const Signup = () => {
142
142
< input type = "password" placeholder = "Password" id = "password"
143
143
value = { password } onChange = { ( e ) => handleInputChange ( e ) } data-testid = "signup-password" />
144
144
< label htmlFor = "confirmPassword" > Confirm Password</ label >
145
- < input type = "password" placeholder = "Confirm Password" id = "confirmPassword"
145
+ < input className = "signup" type = "password" placeholder = "Confirm Password" id = "confirmPassword"
146
146
value = { confirmPassword } onChange = { ( e ) => handleInputChange ( e ) } data-testid = "signup-confirmpass" />
147
147
< button onClick = { ( ) => RegisterUser ( ) } type = "submit" id = "signupButton" data-testid = "signup-submit" > Sign Up</ button >
148
148
< a href = "/login" className = "signup" data-testid = "link" > Already have an account?</ a >
Original file line number Diff line number Diff line change 21
21
22
22
.words {
23
23
padding-top : 0.5rem ;
24
- font-size : 10 rem ;
24
+ font-size : 8 rem ;
25
25
padding-left : 70px ;
26
26
}
27
27
Original file line number Diff line number Diff line change @@ -39,4 +39,12 @@ button {
39
39
40
40
a .login {
41
41
color : black;
42
+ }
43
+
44
+ .checkbox {
45
+ margin-top : 10px ;
46
+ }
47
+
48
+ .login {
49
+ margin-bottom : 10px ;
42
50
}
Original file line number Diff line number Diff line change @@ -39,4 +39,8 @@ button {
39
39
40
40
a .signup {
41
41
color : black;
42
+ }
43
+
44
+ .signup {
45
+ margin-bottom : 10px ;
42
46
}
You can’t perform that action at this time.
0 commit comments