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