-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsignup1.html
More file actions
25 lines (22 loc) · 839 Bytes
/
signup1.html
File metadata and controls
25 lines (22 loc) · 839 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable= no">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Sign Up</title>
<link rel="stylesheet" href="signup1.css">
</head>
<body>
<div class="login-form">
<form class="" action="main.html" method="post">
<h1>Sign Up</h1>
<input type="Username" placeholder="Username" class="txtb">
<input type="Email" placeholder="Email" class="txtb">
<input type="Password" placeholder="Password" class="txtb">
<input type="Confirm password" placeholder="Confirm Password" class="txtb">
<input type="submit" value="Sign Up" class="login-btn">
</form>
</div>
</body>
</html>