-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (37 loc) · 887 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="style.css" />
<title>LOGIN PAGE[FRIENDS APP]</title>
</head>
<body>
<div class="container">
<h1>Login To FRIENDS APP</h1>
<div class="box">
<i class="fa fa-user"></i>
<input
type="email"
name="email"
id="email"
placeholder="Enter Your E-mail"
/>
</div>
<div class="box">
<i class="fa fa-unlock-alt"></i>
<input
type="password"
name="password"
id="password"
placeholder="Enter Your Passcode"
/>
</div>
<button class="btn">SIGN-IN</button>
</div>
<script
src="https://kit.fontawesome.com/6f58655331.js"
crossorigin="anonymous"
></script>
<script src="script.js"></script>
</body>
</html>