-
Notifications
You must be signed in to change notification settings - Fork 7
/
about_log_in.html
129 lines (125 loc) · 2.89 KB
/
about_log_in.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Log in</title>
<script src="https://kit.fontawesome.com/1b1a082b0d.js" crossorigin="anonymous"></script>
<style>
body{
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
box-sizing: border-box;
}
.container{
width: 100%;
height: 100vh;
background-color: rgb(3, 43, 44);
background-position: center;
background-size: cover;
position: relative;
}
.form-box{
width: 90%;
max-width: 450px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
background: #fff;
padding: 50px 60px 70px;
text-align: center;
}
.form-box h1{
font-size: 30px;
margin-bottom: 60px;
color: rgb(62, 138, 161);
position: relative;
}
.form-box h1::after{
content: '';
width: 30px;
height: 4px;
border-radius: 3px;
background: rgb(39, 138, 168);
position: absolute;
bottom: -12px;
left: 50%;
transform: translateX(-50);
}
.input-field{
background: #eaeaea;
margin: 15px 0;
border-radius: 3px;
display: flex;
align-items: center;
}
input{
width: 100%;
background: transparent;
border: 0;
outline: 0;
padding: 18px 15px;
}
.input-field i{
margin-left: 15px;
color: #999;
}
form p{
text-align: left;
font-size: 13px;
}
form p a{
text-decoration: none;
color:rgb(39, 138, 168)
}
.btn-field{
width: 100%;
display: block;
justify-content: space-between;
}
.btn-field button{
block-size: 48%;
background: rgb(39, 138, 168);
color: #fff;
height: 40px;
border-radius: 20px;
outline: 0;
cursor: pointer;
transition: background 1s;
padding: 15px 15px 20px 20px;
}
.input-group{
height: 180px;
}
button:hover{
background-color: rgb(3, 43, 44);
cursor: pointer;
}
</style>
</head>
<body>
<div class="container">
<div class="form-box">
<h1>Log In</h1>
<form>
<div class="input-group">
<div class="input-field">
<i class="fa-solid fa-user"></i>
<input type="text" placeholder="Username">
</div>
<div class="input-field">
<i class="fa-solid fa-lock"></i>
<input type="password" placeholder="password">
</div>
<p>Lost password <a href="#">Click Here</a></p>
</div>
<div class="btn-field">
<button type="button">Log In</button>
</div>
</form>
</div>
</div>
</body>
</html>