blob: 377a81c3bbd2e2522f8f9c7ce24b68943dfffce6 (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<title>Submit your blahaj!</title>
<style>
body {
color: black;
background-image: url('images/blahaj_background.jpg');
}
table {
color: black;
background-color: #bebebe;
margin-top: 10px;
margin-bottom: 10px;
margin-left: 10px;
margin-right: 10px;
}
</style>
</head>
<body>
<center>
<h1>Submit your blahaj!</h1>
<table border="1" width="60%">
<tr>
<td>
<form action = "cgi-bin/submit_blahaj_info.cgi" method = "get">
<lable for = "blahaj_name" maxlength="256">The name of your blahaj</lable>
<input type = "text" name = "blahaj_name"/>
<br/><br/>
<lable for = "blahaj_info">Tell us about your blahaj</lable>
<textarea type = "text" name = "blahaj_info" rows="12" cols="40" maxlength="512"></textarea>
<p>It has a max character count of 512 characters</p>
<br/>
<input type = "submit" value = "Submit this fucker!">
</form>
</td>
</tr>
</table>
</center>
</body>
</html>
|