-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
31 lines (25 loc) · 980 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LOGIN PAGE</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="login.css">
<script>login.js</script>
</head>
<body>
<div class="box">
<h1 id="canvas">REGISTRATION PAGE</h1>
<div id="page">
<i class="fa fa-user-o" aria-hidden="true"></i>
<input type="text" placeholder="Enter Your Username"> <br>
<i class="fa fa-shield" aria-hidden="true"></i>
<input type="password" placeholder="Enter Your Password"> <br>
<i class="fa fa-envelope-o" aria-hidden="true"></i>
<input type="email" placeholder="Enter Your Email id"> <br>
</div>
<input type="button" value="SUBMIT" id="btn">
</div>
</body>
</html>