-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (23 loc) · 776 Bytes
/
index.html
File metadata and controls
30 lines (23 loc) · 776 Bytes
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
<!doctype html>
<html>
<head>
<!-- Place your kit's code here -->
<script src="https://kit.fontawesome.com/a19400316b.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="index.css">
<title>Login page</title>
</head>
<body>
<div class="container" >
<h1>Log In </h1>
<div class="box" >
<i class="fa fa-envelope" aria-hidden="true"></i>
<input type="email" name="email" id="email" placeholder="Enter Your Email">
</div>
<div class="box">
<i class="fa fa-key" aria-hidden="true"></i>
<input type="password" name="password" id="password" placeholder="Enter Your password">
</div>
<button class="btn">Sign in</button>
</div>
</body>
</html>