|
@@ -0,0 +1,193 @@
|
|
|
|
|
+<!DOCTYPE html>
|
|
|
|
|
+<html lang="en">
|
|
|
|
|
+ <head>
|
|
|
|
|
+ <meta charset="utf-8" />
|
|
|
|
|
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
+ <meta name="robots" content="noindex" />
|
|
|
|
|
+ <title>{function="t('ZeroBin')"}</title>
|
|
|
|
|
+ <link type="text/css" rel="stylesheet" href="css/bootstrap/bootstrap-theme-3.3.5.css" />
|
|
|
|
|
+ <link type="text/css" rel="stylesheet" href="css/bootstrap/darkstrap-0.9.3.css" />
|
|
|
|
|
+ <link type="text/css" rel="stylesheet" href="css/bootstrap/zerobin.css?{$VERSION|rawurlencode}" />{if="$SYNTAXHIGHLIGHTING"}
|
|
|
|
|
+ <link type="text/css" rel="stylesheet" href="css/prettify/prettify.css?{$VERSION|rawurlencode}" />{if="strlen($SYNTAXHIGHLIGHTINGTHEME)"}
|
|
|
|
|
+ <link type="text/css" rel="stylesheet" href="css/prettify/{$SYNTAXHIGHLIGHTINGTHEME}.css?{$VERSION|rawurlencode}" />{/if}{/if}
|
|
|
|
|
+ <script type="text/javascript" src="js/jquery-1.11.3.js"></script>
|
|
|
|
|
+ <script type="text/javascript" src="js/sjcl-1.0.2.js"></script>
|
|
|
|
|
+ <script type="text/javascript" src="js/base64-{$BASE64JSVERSION}.js"></script>
|
|
|
|
|
+ <script type="text/javascript" src="js/rawdeflate-0.5.js"></script>
|
|
|
|
|
+ <script type="text/javascript" src="js/rawinflate-0.3.js"></script>
|
|
|
|
|
+ <script type="text/javascript" src="js/bootstrap-3.3.5.js"></script>{if="$SYNTAXHIGHLIGHTING"}
|
|
|
|
|
+ <script type="text/javascript" src="js/prettify.js?{$VERSION|rawurlencode}"></script>{/if}{if="$MARKDOWN"}
|
|
|
|
|
+ <script type="text/javascript" src="js/showdown.js?{$VERSION|rawurlencode}"></script>{/if}
|
|
|
|
|
+ <script type="text/javascript" src="js/zerobin.js?{$VERSION|rawurlencode}"></script>
|
|
|
|
|
+ <!--[if lt IE 10]>
|
|
|
|
|
+ <style type="text/css">#ienotice {display:block !important;} #oldienotice {display:block !important;}</style>
|
|
|
|
|
+ <![endif]-->
|
|
|
|
|
+ </head>
|
|
|
|
|
+ <body role="document">
|
|
|
|
|
+ <nav class="navbar navbar-inverse navbar-static-top">
|
|
|
|
|
+ <div class="navbar-header">
|
|
|
|
|
+ <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
|
|
|
+ <span class="sr-only">{function="t('Toggle navigation')"}</span>
|
|
|
|
|
+ <span class="icon-bar"></span>
|
|
|
|
|
+ <span class="icon-bar"></span>
|
|
|
|
|
+ <span class="icon-bar"></span>
|
|
|
|
|
+ </button>
|
|
|
|
|
+ <a class="reloadlink navbar-brand" href="/">{function="t('ZeroBin')"}</a>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div id="navbar" class="navbar-collapse collapse">
|
|
|
|
|
+ <ul class="nav navbar-nav">
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <button id="sendbutton" type="button" class="hidden btn btn-warning navbar-btn">
|
|
|
|
|
+ <span class="glyphicon glyphicon-upload" aria-hidden="true"></span> {function="t('Send')"}
|
|
|
|
|
+ </button>{if="$EXPIRECLONE"}
|
|
|
|
|
+ <button id="clonebutton" type="button" class="hidden btn btn-warning navbar-btn">
|
|
|
|
|
+ <span class="glyphicon glyphicon-duplicate" aria-hidden="true"></span> {function="t('Clone')"}
|
|
|
|
|
+ </button>{/if}
|
|
|
|
|
+ <button id="rawtextbutton" type="button" class="hidden btn btn-warning navbar-btn">
|
|
|
|
|
+ <span class="glyphicon glyphicon-text-background" aria-hidden="true"></span> {function="t('Raw text')"}
|
|
|
|
|
+ </button>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li class="dropdown">
|
|
|
|
|
+ <select id="pasteExpiration" name="pasteExpiration" class="hidden">
|
|
|
|
|
+{loop="EXPIRE"}
|
|
|
|
|
+ <option value="{$key}"{if="$key == $EXPIREDEFAULT"} selected="selected"{/if}>{$value}</option>{/loop}
|
|
|
|
|
+ </select>
|
|
|
|
|
+ <a id="expiration" href="#" class="hidden dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">{function="t('Expires')"}: <span id="pasteExpirationDisplay">{$EXPIRE[$EXPIREDEFAULT]}</span> <span class="caret"></span></a>
|
|
|
|
|
+ <ul class="dropdown-menu">
|
|
|
|
|
+{loop="EXPIRE"}
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="#" onclick="$('#pasteExpiration').val('{$key}');$('#pasteExpirationDisplay').text('{$value}');return false;">
|
|
|
|
|
+ {$value}
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>{/loop}
|
|
|
|
|
+ </ul>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <div id="burnafterreadingoption" class="navbar-text checkbox hidden">
|
|
|
|
|
+ <label>
|
|
|
|
|
+ <input type="checkbox" id="burnafterreading" name="burnafterreading" {if="$BURNAFTERREADINGSELECTED"} checked="checked"{/if} />
|
|
|
|
|
+ {function="t('Burn after reading')"}
|
|
|
|
|
+ </label>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </li>{if="$DISCUSSION"}
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <div id="opendisc" class="navbar-text checkbox hidden">
|
|
|
|
|
+ <label>
|
|
|
|
|
+ <input type="checkbox" id="opendiscussion" name="opendiscussion" {if="$OPENDISCUSSION"} checked="checked"{/if} />
|
|
|
|
|
+ {function="t('Open discussion')"}
|
|
|
|
|
+ </label>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </li>{/if}{if="$PASSWORD"}
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <div id="password" class="navbar-form hidden">
|
|
|
|
|
+ <input type="password" id="passwordinput" placeholder="{function="t('Password (recommended)')"}" class="form-control" size="19"/>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </li>{/if}{if="$FILEUPLOAD"}
|
|
|
|
|
+ <li id="attach" class="hidden dropdown">
|
|
|
|
|
+ <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">{function="t('Attach a file')"} <span class="caret"></span></a>
|
|
|
|
|
+ <ul class="dropdown-menu">
|
|
|
|
|
+ <li id="filewrap">
|
|
|
|
|
+ <div>
|
|
|
|
|
+ <input type="file" id="file" name="file" />
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a id="fileremovebutton" href="#">
|
|
|
|
|
+ {function="t('Remove attachment')"}
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ </ul>
|
|
|
|
|
+ </li>{/if}
|
|
|
|
|
+ <li class="dropdown">
|
|
|
|
|
+ <select id="pasteFormatter" name="pasteFormatter" class="hidden">
|
|
|
|
|
+{loop="FORMATTER"}
|
|
|
|
|
+ <option value="{$key}"{if="$key == $FORMATTERDEFAULT"} selected="selected"{/if}>{$value}</option>{/loop}
|
|
|
|
|
+ </select>
|
|
|
|
|
+ <a id="formatter" href="#" class="hidden dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">{function="t('Format')"}: <span id="pasteFormatterDisplay">{$FORMATTER[$FORMATTERDEFAULT]}</span> <span class="caret"></span></a>
|
|
|
|
|
+ <ul class="dropdown-menu">
|
|
|
|
|
+{loop="FORMATTER"}
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="#" onclick="$('#pasteFormatter').val('{$key}');$('#pasteFormatterDisplay').text('{$value}');return false;">
|
|
|
|
|
+ {$value}
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>{/loop}
|
|
|
|
|
+ </ul>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ </ul>
|
|
|
|
|
+ <ul class="nav navbar-nav pull-right">{if="strlen($LANGUAGESELECTION)"}
|
|
|
|
|
+ <li id="language" class="dropdown">
|
|
|
|
|
+ <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"><span class="glyphicon glyphicon-flag" aria-hidden="true"></span> {$LANGUAGES[$LANGUAGESELECTION][0]} <span class="caret"></span></a>
|
|
|
|
|
+ <ul class="dropdown-menu">
|
|
|
|
|
+{loop="LANGUAGES"}
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="#" class="reloadlink" onclick="document.cookie='lang={$key}';">
|
|
|
|
|
+ {$value[0]} ({$value[1]})
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>{/loop}
|
|
|
|
|
+ </ul>
|
|
|
|
|
+ </li>{/if}
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <button id="newbutton" type="button" class="reloadlink hidden btn btn-warning navbar-btn">
|
|
|
|
|
+ <span class="glyphicon glyphicon-file" aria-hidden="true"></span> {function="t('New')"}
|
|
|
|
|
+ </button>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ </ul>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </nav>
|
|
|
|
|
+ <header class="container">{if="strlen($NOTICE)"}
|
|
|
|
|
+ <div role="alert" class="alert alert-info">
|
|
|
|
|
+ <span class="glyphicon glyphicon-info-sign" aria-hidden="true"></span> {$NOTICE|htmlspecialchars}
|
|
|
|
|
+ </div>{/if}
|
|
|
|
|
+ <div id="remainingtime" role="alert" class="hidden alert alert-info">
|
|
|
|
|
+ <span class="glyphicon glyphicon-info-sign" aria-hidden="true"></span>
|
|
|
|
|
+ </div>{if="$FILEUPLOAD"}
|
|
|
|
|
+ <div id="attachment" role="alert" class="hidden alert alert-info">
|
|
|
|
|
+ <span class="glyphicon glyphicon-info-sign" aria-hidden="true"></span> <a>{function="t('Download attachment')"}</a> <span id="clonedfile" class="hidden">{function="t('Cloned file attached.')"}</span>
|
|
|
|
|
+ </div>{/if}{if="strlen($STATUS)"}
|
|
|
|
|
+ <div id="status" role="alert" class="alert alert-success">
|
|
|
|
|
+ <span class="glyphicon glyphicon-ok" aria-hidden="true"></span> {$STATUS|htmlspecialchars}
|
|
|
|
|
+ </div>{/if}
|
|
|
|
|
+ <div id="errormessage" role="alert" class="{if="!strlen($ERROR)"}hidden {/if}alert alert-danger"><span class="glyphicon glyphicon-alert" aria-hidden="true"></span> {$ERROR|htmlspecialchars}</div>
|
|
|
|
|
+ <div id="noscript" role="alert" class="nonworking alert alert-error"><span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span> {function="t('Javascript is required for ZeroBin to work.<br />Sorry for the inconvenience.')"}</div>
|
|
|
|
|
+ <div id="oldienotice" role="alert" class="hidden nonworking alert alert-danger"><span class="glyphicon glyphicon-alert" aria-hidden="true"></span> {function="t('ZeroBin requires a modern browser to work.')"}</div>
|
|
|
|
|
+ <div id="ienotice" role="alert" class="hidden alert alert-error"><span class="glyphicon glyphicon-question-sign" aria-hidden="true"></span> {function="t('Still using Internet Explorer? Do yourself a favor, switch to a modern browser:')"}
|
|
|
|
|
+ <a href="http://www.mozilla.org/firefox/">Firefox</a>,
|
|
|
|
|
+ <a href="http://www.opera.com/">Opera</a>,
|
|
|
|
|
+ <a href="http://www.google.com/chrome">Chrome</a>,
|
|
|
|
|
+ <a href="http://www.apple.com/safari">Safari</a>...
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div id="pasteresult" role="alert" class="hidden alert alert-success">
|
|
|
|
|
+ <span class="glyphicon glyphicon-ok" aria-hidden="true"></span>
|
|
|
|
|
+ <div id="deletelink"></div>
|
|
|
|
|
+ <div id="pastelink"></div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </header>
|
|
|
|
|
+ <section class="container">
|
|
|
|
|
+ <article class="row">
|
|
|
|
|
+ <div id="image" class="col-md-12 text-center hidden"></div>
|
|
|
|
|
+ <div id="prettymessage" class="col-md-12 hidden">
|
|
|
|
|
+ <pre id="prettyprint" class="col-md-12 prettyprint linenums:1"></pre>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div id="cleartext" class="col-md-12 hidden"></div>
|
|
|
|
|
+ <p class="col-md-12"><textarea id="message" name="message" cols="80" rows="25" class="form-control hidden"></textarea></p>
|
|
|
|
|
+ </article>
|
|
|
|
|
+ </section>
|
|
|
|
|
+ <section class="container">
|
|
|
|
|
+ <div id="discussion" class="hidden">
|
|
|
|
|
+ <h4>{function="t('Discussion')"}</h4>
|
|
|
|
|
+ <div id="comments"></div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </section>
|
|
|
|
|
+ <footer class="container">
|
|
|
|
|
+ <div class="row">
|
|
|
|
|
+ <h4 class="col-md-5 col-xs-8">{function="t('ZeroBin')"} <small>- {function="t('Because ignorance is bliss')"}</small></h4>
|
|
|
|
|
+ <p class="col-md-1 col-xs-4 text-center">{$VERSION}</p>
|
|
|
|
|
+ <p id="aboutbox" class="col-md-6 col-xs-12">
|
|
|
|
|
+ {function="t('ZeroBin is a minimalist, opensource online pastebin where the server has zero knowledge of pasted data. Data is encrypted/decrypted <i>in the browser</i> using 256 bits AES. More information on the <a href="https://github.com/elrido/ZeroBin/wiki">project page</a>.')"}
|
|
|
|
|
+ </p>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </footer>
|
|
|
|
|
+ <div id="cipherdata" class="hidden">{$CIPHERDATA}</div>
|
|
|
|
|
+ </body>
|
|
|
|
|
+</html>
|