-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (44 loc) · 2.49 KB
/
index.html
File metadata and controls
44 lines (44 loc) · 2.49 KB
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
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=>, initial-scale=1.0">
<title>Registration Form</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Registration Form</h1>
<p>Please fill out this form with the required information</p>
<form action="https://register-demo.freecodecamp.org" method="post">
<fieldset>
<label for="First-Name">Enter Your First-Name: <input type="text" id="First-Name" required /></label>
<label for="Last Name">Enter Your Last-Name: <input type="text" id="Last-Name" required /></label>
<label for="Email">Enter Your Email: <input type="text" id="Email" required /></label>
<label for="Password">Create a New Password: <input type="text" id="Password" pattern="[a-z0-5]{8,}" required/></label>
</fieldset>
<fieldset>
<label for="personal-account"><input type="radio" class="inline" name="Account-type" id="personal-account"> Personal Account</label>
<label for="business-account"><input type="radio" class="inline" name="Account-type" id="business account"> Business Account</label>
<label for="terms-and-condition"><input type="checkbox" class="inline" id="terms and condition"> I Accept the <a href="https://google.org.terms-and-condition">terms-and-condition</a> </label>
</fieldset>
<fieldset>
<label for="profile picture">Upload a profile picture <input type="file" id="profile picture" name="profile picture"> </label>
<label for="age">Input Your age (years) <input type="number" min="16" max="100" id="age" name="age"> </label>
<label for="referrer">How did You hear about us?
<select id="referrer" name="referrer">
<option value="">(select one)</option>
<option value="1">freecodecamp News</option>
<option value="2">freecodecamp youtube</option>
<option value="3">freecodecamp forum</option>
<option value="4">Other</option>
</select>
</label>
<label for="bio">Provide your bio here
<textarea id="bio" name="bio" rows="3" cols="30" placeholder="I like coding on a beach......."></textarea>
<input type="Submit" value="Submit" id="Submit">
</label>
</fieldset>
</form>
</body>
</html>