-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtemplate.html
More file actions
36 lines (36 loc) · 1.04 KB
/
Copy pathtemplate.html
File metadata and controls
36 lines (36 loc) · 1.04 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
<html>
<head>
<title>facemash</title>
<style type="text/css">
body { font-family:sans-serif; }
td { text-align:center; }
td.image { background-color:#b0c4de; }
td.imaage:hover { background-color:#4682b4; }
</style>
</head>
<body>
<table cellpadding="10" cellspacing="5">
<tr>
<td class="image">
<form action="" method="post">
<input type="hidden" name="winner" value="%(url1)s"/>
<input type="hidden" name="loser" value="%(url2)s"/>
<input type="image" src="%(url1)s"/>
</form>
</td>
<td rowspan="2"><h3>V</h3></td>
<td class="image">
<form action="" method="post">
<input type="hidden" name="winner" value="%(url2)s"/>
<input type="hidden" name="loser" value="%(url1)s"/>
<input type="image" src="%(url2)s"/>
</form>
</td>
</tr>
</tr>
<td>Rank: %(rank1)d</td>
<td>Rank: %(rank2)d</td>
</tr>
</table>
</body>
</html>