-
Notifications
You must be signed in to change notification settings - Fork 0
/
sanitize.html
47 lines (47 loc) · 1.16 KB
/
sanitize.html
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
<!DOCTYPE html>
<html>
<head>
<title>Sanitize</title>
</head>
<body>
<form action="sanitize.php" method="POST">
<table>
<tr>
<td><label>Email</label><td>
<td><input type="text" name="email" autocomplete="off"><td>
</tr>
<tr>
<td><label>Encoded</label><td>
<td><input type="text" name="encoded" autocomplete="off"><td>
</tr>
<tr>
<td><label>Quote</label><td>
<td><input type="text" name="quote" autocomplete="off"><td>
</tr>
<tr>
<td><label>Float</label><td>
<td><input type="text" name="float" autocomplete="off"><td>
</tr>
<tr>
<td><label>Int</label><td>
<td><input type="text" name="int" autocomplete="off"><td>
</tr>
<tr>
<td><label>Special_C</label><td>
<td><input type="text" name="special_c" autocomplete="off"><td>
</tr>
<tr>
<td><label>String</label><td>
<td><input type="text" name="string" autocomplete="off"><td>
</tr>
<tr>
<td><label>URL</label><td>
<td><input type="text" name="URL" autocomplete="off"><td>
</tr>
<tr>
<td><input type="submit" value="Send"><td>
</tr>
</table>
</form>
</body>
</html>