-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsign up
More file actions
21 lines (21 loc) · 696 Bytes
/
sign up
File metadata and controls
21 lines (21 loc) · 696 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 lang="en">
<head>
<title>Sign Up</title>
<h1>Tell us more about yourself!</h1>
</head>
<body>
<fieldset>
<legend>Contact Details></legend>
<label>First Name: <br />
<input type="text" name="First name"></label><br/>
<label>Last Name: <br/>
<input type="text" name="Last Name"></label><br/>
<label>Email: <br/>
<input type="text" name="email"></label><br/>
<label>Contact Number: <br/>
<input type="text" name="contact"></label>
<div><button type="submit">Submit</button> </div>
</fieldset>
</body>
</html>