Updated binnit to latest and added new files

Signed-off-by: Nagy Károly Gábriel <k@jpi.io>
This commit is contained in:
2019-01-24 20:44:00 +02:00
parent fd7e0f676e
commit 9a89396cbc
8 changed files with 169 additions and 18 deletions
+23
View File
@@ -0,0 +1,23 @@
<html>
<head>
<link rel="stylesheet" media="screen, projection" href="/static/index.css">
</head>
<body>
<h1>Binnit</h1>
<form method="POST">
<div class="title">
<p class="title">
<input type="text" name="title" placeholder="Title goes here..."/>
</p>
<p class="action">
<input type="checkbox" name="show" value="1" id="id_show" checked />
<label for "id_show"> Show link </label>
<input type="submit" class="button" value="Binnit!">
</p>
</div>
<div class="title">
<textarea name="paste" cols="40" placeholder="The pasta goes here..." rows="10" maxlength="262144000"></textarea>
</div>
</form>
</body>
</html>
+17
View File
@@ -0,0 +1,17 @@
<html>
<head>
<title>binit</title>
<link rel="stylesheet" media="screen, projection" href="/static/paste.css">
</head>
<body>
<div class="title">
Title: {{TITLE}}
</div>
<div class="date">
Date: {{DATE}}
</div>
<div class="content">
{{CONTENT}}
</div>
</body>
</html>