-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
31 lines (24 loc) · 1.15 KB
/
forms.html
File metadata and controls
31 lines (24 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Register With Us</title>
</head>
<body>
<form method="POST" action="https://requestinspector.com/inspect/01gdxa5gc2pvs3tmy7nc7eb6hg">
<label for="email">Email</label><br>
<input id="email" name="email" placeholder="Enter your email"><br>
<label for="password">Password</label><br>
<input id="password" type="password" name="password" placeholder="Enter your password"><br>
<label for="bio">Biography</label><br>
<textarea id="bio" name="bio">bio</textarea><br>
<label></label>
<p>How did you hear about us?</p><br>
<label><input type="radio" name="howDidYouHearAboutUsBillboard" value="billboard">Billboard</label><br>
<label><input type="radio" name="howDidYouHearAboutUsRadioAd" value="radio advertisement">Radio advertisement</label><br>
<label><input type="radio" name="howDidYouHearAboutUsInternetAd" value="internet advertisement">Internet advertisement</label><br>
<label><input type="radio" name="howDidYouHearAboutUsOther" value="other">Other</label><br>
<input type="submit">
</form>
</body>
</html>