-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignForm.html
More file actions
21 lines (21 loc) · 811 Bytes
/
Copy pathsignForm.html
File metadata and controls
21 lines (21 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Awesome sign form</title>
<link rel="stylesheet" href="signForm.css">
<link href="https://fonts.googleapis.com/css?family=Permanent+Marker" rel="stylesheet">
</head>
<body>
<div class="signup-form">
<form class="" action="index.html" method="post" >
<h1>Sign up</h1>
<input type="text" placeholder="Full Name" class="txtb">
<input type="email" placeholder="Email" class="txtb">
<input type="password" placeholder="Password" class="txtb">
<input type="submit" value="Create Account" class="signup-btn">
<a href="#">Already Have one ?</a>
</form>
</div>
</body>
</html>