-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
85 lines (73 loc) · 2.63 KB
/
forms.html
File metadata and controls
85 lines (73 loc) · 2.63 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Register With Us</title>
</head>
<body>
<form method="POST" action="https://request-inspector.glitch.me/">
<h2>Login</h2>
<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="Enter your email" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" placeholder="Enter your password" required>
<input type="submit" value="login">
<h2>Bio</h2>
<label for="message">Bio:</label>
<div>
<label>
<textarea id="message" name="message" placeholder="Enter your lifestory cliffnotes here"
required></textarea>
</label>
</div>
<input type="submit" value="submit">
<h2>How did you hear about us?</h2>
<div>
<label>Tell us below:</label>
<div>
<!-- <input type="radio" name="hear-about" value="radio" required> Radio-->
<!-- <input type="radio" name="hear-about" value="television" required> TV-->
<!-- <input type="radio" name="hear-about" value="thesocials" required> The Socials-->
<!-- <input type="radio" name="hear-about" value="billboard" required> Billboard-->
<!-- <input type="radio" name="other" value="other" required> Other-->
<label>
<input type="checkbox" name="radio">
</label> Radio
<label>
<input type="checkbox" name="tv">
</label>TV
<label>
<input type="checkbox" name="the-socials">
</label>The Socials
<label>
<input type="checkbox" name="billboard">
</label> Billboard
<input type="submit" value="submit">
</div>
<div>
<h2>What web browser are you using?</h2>
<label for="browsers">Select your current browser:</label>
<select id="browsers" name="browser">
<option value="chrome">Chrome</option>
<option value="firefox">FireFox</option>
<option value="internet-explorer">IE</option>
</select>
<input type="submit" value="submit">
</div>
</div>
</form>
<script>
let something = {
"method": "POST",
"query": {},
"body": {
"email": "kraklsje@gmail.com",
"password": "lksjg",
"message":"slkdjfls",
"tv": "checkbox",
"browser": "firefox"
}
}
</script>
</body>
</html>