1
0
mirror of https://github.com/Tygs/0bin.git synced 2023-08-10 21:13:00 +03:00

Merge branch 'master' of github.com:sametmax/0bin

This commit is contained in:
max
2012-04-29 01:10:20 +07:00
9 changed files with 381 additions and 54 deletions

View File

@ -6,7 +6,8 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="0bin is a client-side-encrypted
pastebin with a burn after reading feature">
pastebin featuring burn after reading, an history and
a clipboard">
<link rel="shortcut icon" href="/static/ico/favicon.ico">
<link href="/static/css/prettify.css" rel="stylesheet" />
@ -86,7 +87,7 @@
<script src="/static/js/jquery.elastic.source.js"></script>
<script src="/static/js/lzw.js"></script>
<script src="/static/js/prettify.min.js"></script>
<script src="/static/js/ZeroClipboard.js"></script>
<!--
<script src="/static/js/jquery.js"></script>
<script src="/static/js/bootstrap-transition.js"></script>

View File

@ -3,7 +3,7 @@
<div class="alert alert-info">
<strong>Ok!</strong>
This paste will be deleted the next time it is read.
</div>
</div>
%else:
<div class="alert">
<strong>Warning!</strong>
@ -13,11 +13,15 @@
%end
%end
<div class="well paste-form">
<div id="copy-success" class="alert alert-success">
The paste is now in your clipboad
</div>
<div class="well">
<form action="/" method="get" accept-charset="utf-8">
<p>
<span id="downloadify">
Download
<span id="clip-container" style="position:relative">
<a id="clip-button">Copy To Clipboard</a>
</span>
<span class="paste-option btn-group top">
<button class="btn btn-clone"><i class="icon-camera"></i>&nbsp;Clone</button>
@ -25,20 +29,20 @@
</span>
</p>
<p>
<pre id="paste-content" class="prettyprint linenums">
<code>
{{ paste.content }}
</code>
</pre>
</p>
<p>
<pre id="paste-content" class="prettyprint linenums">
<code>
{{ paste.content }}
</code>
</pre>
</p>
<p class="paste-option btn-group bottom">
<button class="btn btn-clone"><i class="icon-camera"></i>&nbsp;Clone</button>
<button class="btn">New Paste</button>
</p>
<p class="paste-option btn-group bottom">
<button class="btn"><i class="icon-camera"></i>&nbsp;Clone</button>
<button class="btn">New Paste</button>
</p>
</form>
</form>
</div>
<!-- For cloning -->