File tree Expand file tree Collapse file tree 3 files changed +16
-7
lines changed Expand file tree Collapse file tree 3 files changed +16
-7
lines changed Original file line number Diff line number Diff line change 8
8
</ head >
9
9
< body >
10
10
< div class ="container ">
11
- < h1 > Please Login</ h1 >
11
+ <!-- Change the Main Title -->
12
+ < h1 > Welcome Back</ h1 >
12
13
< form >
13
14
< div class ="form-control ">
14
15
< input type ="text " required />
15
16
< label > Email</ label >
16
17
</ div >
18
+ <!-- Add a New Input Field -->
19
+ < div class ="form-control ">
20
+ < input type ="text " required />
21
+ < label > Username</ label >
22
+ </ div >
17
23
< div class ="form-control ">
18
24
< input type ="password " required />
19
25
< label > Password</ label >
20
26
</ div >
21
- < button class ="btn "> Login </ button >
27
+ < button class ="btn "> Sign In </ button >
22
28
< p class ="text "> Don't have an account? < a href ="# "> Register</ a > </ p >
23
29
</ form >
24
30
</ div >
Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ labels.forEach((label) => {
5
5
. split ( "" )
6
6
. map (
7
7
( letter , idx ) =>
8
- `<span style="transition-delay:${ idx * 50 } ms">${ letter } </span>`
8
+ // Adjust Wave Animation Speed
9
+ `<span style="transition-delay:${ idx * 25 } ms">${ letter } </span>`
9
10
)
10
11
. join ( "" ) ;
11
12
} ) ;
Original file line number Diff line number Diff line change @@ -30,14 +30,15 @@ body {
30
30
31
31
.container a {
32
32
text-decoration : none;
33
- color : lightblue ;
33
+ color : # 59a96a ;
34
34
}
35
35
36
36
.btn {
37
37
cursor : pointer;
38
38
display : inline-block;
39
39
width : 100% ;
40
- background : lightblue;
40
+ /* Modify Button Appearance */
41
+ background : # 59a96a ;
41
42
padding : 15px ;
42
43
font-family : inherit;
43
44
font-size : 16px ;
77
78
.form-control input : focus ,
78
79
.form-control input : valid {
79
80
outline : 0 ;
80
- border-bottom-color : lightblue ;
81
+ border-bottom-color : # 13293d ;
81
82
}
82
83
83
84
.form-control label {
96
97
97
98
.form-control input : focus + label span ,
98
99
.form-control input : valid + label span {
99
- color : lightblue;
100
+ /* Change Label Color on Focus */
101
+ color : # 59a96a ;
100
102
transform : translateY (-30px );
101
103
}
You can’t perform that action at this time.
0 commit comments