blob: a428d223d0b54fecee0bcc21458c05a26b73733a (
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
50
|
<html>
<head>
<style type="text/css">
body {
margin-left: 5%;
line-height:1.6;
font-size:20px;
}
h1 {
background-color: #cccccc;
padding-left: 10px;
border-bottom: solid 5px #444444;
border-left: solid 5px #222222;
}
div.title {
border-top: 2px solid #444444;
border-left: 4px solid #444444;
margin: 3px;
padding-left: 5px;
}
input.button {
padding: 5px;
line-height: 1.6;
font-size: 20px;
}
</style>
</head>
<body>
<h1>Binnit</h1>
<form method="POST">
<div class="title">
Title:
<input type="text" name="title" size="24"/>
</div>
<div class="title">
Paste:
<br />
<textarea name="paste" cols="100" rows="15"></textarea>
<br />
<input type="checkbox" name="show" value="1" checked />Show link
<br />
</div>
<input type="submit" class="button" value="Binnit!">
</form>
</body>
</html>
|