-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsign-up.html
More file actions
33 lines (27 loc) · 977 Bytes
/
Copy pathsign-up.html
File metadata and controls
33 lines (27 loc) · 977 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
30
31
32
33
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css\signup.css">
<link rel="icon" href="images\favicon_.ico">
<title>Singup Page</title>
</head>
<body>
<div class="container">
<div class="form-container">
<h2>Sign up</h2>
<form action="index.html" >
<div class="input-group">
<input type="text" placeholder="First name" >
<input type="text" placeholder="Last name" >
</div>
<input type="email" placeholder="Email address" >
<input type="password" placeholder="Password" >
<input type="password" placeholder="Confirm password" >
<input type="password" placeholder=" Confirm password" >
<button type="button" name="button" >Sign Up</button>
</form>
</div>
</div>
</body>
</html>