-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTest.html
More file actions
58 lines (53 loc) · 1.6 KB
/
Test.html
File metadata and controls
58 lines (53 loc) · 1.6 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
<!DOCTYPE html>
<html>
<header>
<h1>A list of insults, for the faggots in your life!</h1>
<script src='https://www.google.com/recaptcha/api.js'></script>
</header>
<body>
<br>
<p1>Scroll through the great list of insults!</p1>
<br>
<br>
<div style="width: 1000px; height: 1000px;">
<embed src=insults.txt height="75%" width="75%">
</div>
<br>
<div>
<button type="button" onclick="alert('Hello World!')">Click Me - Popup box test!</button>
</div>
<br>
<div style="width: 500px; height: 500px;">
<form action="comment_processing.php" autocomplete="on" method="post">
<fieldset>
<legend>Post a comment: </legend>
First name:<br>
<input type="text" name="firstname" maxlength="20" placeholder="First name" required>
<br>
Last name:<br>
<input type="text" name="lastname" maxlength="20" placeholder="Last name" required>
<br>
E-Mail (optional):<br>
<input type="email" name="email" maxlength="40" placeholder="email@subdomain.domain">
<br>
Leave your comment here: (Max 100 characters)
<textarea name="comment" rows="6" cols="50" maxlength="100" placeholder="Type your comment here" required></textarea>
<br>
<br>
<div class="g-recaptcha" data-sitekey="6LdaSBgTAAAAAKhFXqnZLbmLuyd1ADNhlHVcNvEq"></div>
<br>
<br>
<input type="submit" value="Submit">
</fieldset>
</form>
</div>
<br>
<br>
<br>
<br>
<br>
<div style="width: 1000px; height: 500px;">
<embed src=output.txt height="100%" width="100%">
</div>
</body>
</html>