-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSubmit.html
executable file
·94 lines (91 loc) · 3.88 KB
/
Submit.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
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
86
87
88
89
90
91
92
93
94
<html>
<head>
<title>Python Hacker News | Submit</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<meta name="author" content="" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link href="/static/news.css" rel="stylesheet" type="text/css" />
<link rel="alternate" type="application/rss+xml" title=" RSS Feed" href=/feed />
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-29270129-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<center>
<table border=0 cellpadding=0 cellspacing=0 width="85%" bgcolor=#f6f6ef>
<tr>
<td bgcolor=#00a300>
<table border=0 cellpadding=0 cellspacing=0 width="100%" style="padding:2px">
<tr>
<td style="width:18px;padding-right:4px">
<a href="http://www.pythonmeme.com">
<img src="static/logo.png" width="16" height="16" style="border:1px #00a300 solid;">
</a>
</td>
<td style="line-height:12pt; height:10px;">
<span class="pagetop">
<b>Submit
</b>
</span>
</td>
</tr>
</table>
</td>
</tr>
<tr style="height:10px">
</tr>
<tr>
<td>
<form method=post action="/post">
<table border=0>
<tr>
<td>title
</td>
<td>
<input type=text name="t" value="" size=50>
</td>
</tr>
<tr>
<td>url
</td>
<td>
<input type=text name="u" value="" size=50>
</td>
</tr>
<tr>
<td>
</td>
<td>
<input type=submit value="submit">
</td>
</tr>
<tr style="height:20px">
</tr>
<tr>
<td>
</td>
<td>
You can also submit via
<a href="/bookmarklet">
<u>bookmarklet
</u>
</a>.
</td>
</tr>
</table>
</form>
</td>
</tr>
</table>
</center>
</body>
</html>