-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform_lecNotes.html
More file actions
50 lines (45 loc) · 1.78 KB
/
form_lecNotes.html
File metadata and controls
50 lines (45 loc) · 1.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Form lec</title>
</head>
<body>
<!--form tags-->
<!--container -->
<form method="POST" action="https://request-inspector.glitch.me/">
<label for="username">Username</label>
<input id="username" name="username" type="text" placeholder="ex: Username123">
<br>
<label for="password">Password</label>
<input id="password" name="password" type="password" placeholder="weak password">
<br>
<input type="submit">
<button type="submit"> Click here for funny</button>
<br>
<label for="textarea">txt area save your password here</label>
<br>
<textarea id="textarea" name=" comment "> </textarea>
<br>
<br>
<label for="check"> Check Here </label>
<br>
<input id="check" name="newsletter_signup" value="true" type="checkbox" checked> sign up for you to get annoyed by endless/pointless emails about our company u will never read <br>
<BR>
<p>What is your fav tv show answer wrong and the window closes</p>
A<input type="Radio" name="quiz_question" value="a" >The Rookie<br> <!--as long as the name is the same the radio or questions are in one-->
B<input type="Radio" name="quiz_question" value="b"> Gen V<br>
C<input type="Radio" name="quiz_question" value="c"> GoT but minus season 8<br>
D<input type="Radio" name="quiz_question" value="d"> Band of Brothers <br>
<p>Plz give me your coffee Preferences</p>
<select name="coffee_preference">
<option value="light">Light Roast</option>
<option value="Dark">Dark Roast</option>
<option value="Express">Cocaine Roast</option>
<option value="Decaf"> Decaf? what are u a monster</option>
</select>
<br>
<input TYPE="hidden" name="User_id" value="432">
</form>
</body>
</html>