aboutsummaryrefslogtreecommitdiff
path: root/index.tpl
blob: a117af96a10624df0eda755433b31bcabbb89b49 (plain) (blame)
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
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<link rel="stylesheet" href="/style.css" defer>
	<title>Brutally Simple Pastebin</title>
</head>
<body>
<nav>
  <a href="/">Home</a>
  <div style="display: block; float: right;">
  </div>
</nav>

<container>
	<h1>Brutally simple pastebin</h1>
	
	<form action="/new" method="POST" id="postform">
		<label for="title">Title:</label>
		<input id="title" name="title" type="text" />
	
		<label for="content">Paste Content:</label>
	
		<input type="submit" value="Post">
	</form>
	
	<textarea id="content" name="content" cols="80" rows="24" form="postform"></textarea>
</container>

	
</body>
</html>