-
Notifications
You must be signed in to change notification settings - Fork 2
/
login.html
55 lines (53 loc) · 2.02 KB
/
login.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<link rel="stylesheet" href="CSS/style.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="CSS/login.css">
</head>
<body>
<header>
<nav class="nav-bar">
<ul class="link-list-home">
<li class="each-link"><a class="link-size" href="index.html">START<span class="X">x</span></a></li>
</ul>
<ul class="link-list">
<li class="each-link"><a class="link-size" href="Services.html">Services</a></li>
<li class="each-link"><a class="link-size" href="about.html">About</a></li>
<li class="each-link"><a class="link-size" href="contect.html">Contect</a></li>
<li class="each-link"><a class="link-size" href="login.html">Sign In</a></li>
</ul>
</nav>
</header>
<div class="login-shi">
<h1 class="head">Welcome Back</h1>
<div class="wrapper">
<form action="">
<h1>Sign in</h1>
<div class= "input-box">
<input type="text" placeholder="Username"
required>
<i class='bx bxs-user'></i>
</div>
<div class="input-box">
<input type="password"
placeholder="Password" required>
<i class='bx bxs-lock-alt'></i>
</div>
<div class="remenber-forgot">
<lable><input type = "checkbox" class="rem-me"> Remember me
</lable>
<a class="forgot-pwd" href="#">Forgot password?</a>
</div>
<button type="Submit" class="btn">Login</button>
<div class="register-link">
<p>Don't have an account? <a href="signup.html">Register</a></p>
</div>
</form>
</div>
</div>
</body>
</html>