bootstrap.php 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477
  1. <?php
  2. use PrivateBin\I18n;
  3. $isCpct = substr($template, 9, 8) === '-compact';
  4. $isDark = substr($template, 9, 5) === '-dark';
  5. $isPage = substr($template, -5) === '-page';
  6. ?><!DOCTYPE html>
  7. <html lang="en">
  8. <head>
  9. <meta charset="utf-8" />
  10. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  11. <meta name="viewport" content="width=device-width, initial-scale=1">
  12. <meta name="robots" content="noindex" />
  13. <meta name="referrer" content="no-referrer">
  14. <title><?php echo I18n::_($NAME); ?></title>
  15. <?php
  16. if (!$isDark):
  17. ?>
  18. <link type="text/css" rel="stylesheet" href="css/bootstrap/bootstrap-3.3.5.css" />
  19. <?php
  20. endif;
  21. ?>
  22. <link type="text/css" rel="stylesheet" href="css/bootstrap/bootstrap-theme-3.3.5.css" />
  23. <?php
  24. if ($isDark):
  25. ?>
  26. <link type="text/css" rel="stylesheet" href="css/bootstrap/darkstrap-0.9.3.css" />
  27. <?php
  28. endif;
  29. ?>
  30. <link type="text/css" rel="stylesheet" href="css/bootstrap/privatebin.css?<?php echo rawurlencode($VERSION); ?>" />
  31. <?php
  32. if ($SYNTAXHIGHLIGHTING):
  33. ?>
  34. <link type="text/css" rel="stylesheet" href="css/prettify/prettify.css?<?php echo rawurlencode($VERSION); ?>" />
  35. <?php
  36. if (strlen($SYNTAXHIGHLIGHTINGTHEME)):
  37. ?>
  38. <link type="text/css" rel="stylesheet" href="css/prettify/<?php echo rawurlencode($SYNTAXHIGHLIGHTINGTHEME); ?>.css?<?php echo rawurlencode($VERSION); ?>" />
  39. <?php
  40. endif;
  41. endif;
  42. ?>
  43. <noscript><link type="text/css" rel="stylesheet" href="css/noscript.css" /></noscript>
  44. <script type="text/javascript" src="js/jquery-3.1.1.js" integrity="sha512-U6K1YLIFUWcvuw5ucmMtT9HH4t0uz3M366qrF5y4vnyH6dgDzndlcGvH/Lz5k8NFh80SN95aJ5rqGZEdaQZ7ZQ==" crossorigin="anonymous"></script>
  45. <script type="text/javascript" src="js/sjcl-1.0.4.js" integrity="sha512-BqVQ8GgWfMCcdsDuP6Ggm1BV7+mmoWH3PC4UqcYpEKSdEq1rthy6NUsa6gu5sydewbi/ilI3E3ohdCxlPPF9ww==" crossorigin="anonymous"></script>
  46. <?php
  47. if ($ZEROBINCOMPATIBILITY):
  48. ?>
  49. <script type="text/javascript" src="js/base64-1.7.js" integrity="sha512-JdwsSP3GyHR+jaCkns9CL9NTt4JUJqm/BsODGmYhBcj5EAPKcHYh+OiMfyHbcDLECe17TL0hjXADFkusAqiYgA==" crossorigin="anonymous"></script>
  50. <?php
  51. else:
  52. ?>
  53. <script type="text/javascript" src="js/base64-2.1.9.js" integrity="sha512-rbqAby7hObftbEoGQzkhUbEh5YkUn2MtekTLs4btvo2oly4CZ3DxhJzEh0u/rNzS54tcJdqi5Ug1ruugEd2U1g==" crossorigin="anonymous"></script>
  54. <?php
  55. endif;
  56. ?>
  57. <script type="text/javascript" src="js/rawdeflate-0.5.js" integrity="sha512-tTdZ7qMr7tt5VQy4iCHu6/aGB12eRwbUy+AEI5rXntfsjcRfBeeqJloMsBU9FrGk1bIYLiuND/FhU42LO1bi0g==" crossorigin="anonymous"></script>
  58. <script type="text/javascript" src="js/rawinflate-0.3.js" integrity="sha512-g8uelGgJW9A/Z1tB6Izxab++oj5kdD7B4qC7DHwZkB6DGMXKyzx7v5mvap2HXueI2IIn08YlRYM56jwWdm2ucQ==" crossorigin="anonymous"></script>
  59. <script type="text/javascript" src="js/bootstrap-3.3.5.js" integrity="sha512-/W33QnLmSAP1fwINS9iXgB6s/VOIG9GVdIuIYaUtbSvKPMv5S08PtT3PqnT2WjwBgB8DFeDN2nqJroqQYF7SwQ==" crossorigin="anonymous"></script>
  60. <?php
  61. if ($SYNTAXHIGHLIGHTING):
  62. ?>
  63. <script type="text/javascript" src="js/prettify.js?<?php echo rawurlencode($VERSION); ?>" integrity="sha512-m8iHxoN+Fe12xxFwWNdY/TS4KoFntHp29qY0xUzBnPd0bkKMOR/dFhEdTWydpt0b/fIXyhB+znGYUvgjfJ2RzQ==" crossorigin="anonymous"></script>
  64. <?php
  65. endif;
  66. if ($MARKDOWN):
  67. ?>
  68. <script type="text/javascript" src="js/showdown-1.4.1.js" integrity="sha512-Kbz1FIlDnqUJu/3yW8H8USzURA3JuUqSKRwz13lM4kWt6C0n6s4tjl81PCfnWtE4gBIzyj5uGePcfUyotk/icw==" crossorigin="anonymous"></script>
  69. <?php
  70. endif;
  71. ?>
  72. <script type="text/javascript" src="js/privatebin.js?<?php echo rawurlencode($VERSION); ?>" integrity="sha512-eiKDhuH9ab6eBlJbn0nggiYIvCJd82nnzfmr94+NMaSqImQe3V61FKaOwfiBg6AHQCn0GE9OX4xLN5ATfJPGkg==" crossorigin="anonymous"></script>
  73. <!--[if lt IE 10]>
  74. <style type="text/css">body {padding-left:60px;padding-right:60px;} #ienotice {display:block;} #oldienotice {display:block;}</style>
  75. <![endif]-->
  76. <link rel="apple-touch-icon" href="img/apple-touch-icon.png?<?php echo rawurlencode($VERSION); ?>" sizes="180x180" />
  77. <link rel="icon" type="image/png" href="img/favicon-32x32.png?<?php echo rawurlencode($VERSION); ?>" sizes="32x32" />
  78. <link rel="icon" type="image/png" href="img/favicon-16x16.png?<?php echo rawurlencode($VERSION); ?>" sizes="16x16" />
  79. <link rel="manifest" href="manifest.json?<?php echo rawurlencode($VERSION); ?>" />
  80. <link rel="mask-icon" href="img/safari-pinned-tab.svg?<?php echo rawurlencode($VERSION); ?>" color="#ffcc00" />
  81. <link rel="shortcut icon" href="img/favicon.ico">
  82. <meta name="msapplication-config" content="browserconfig.xml">
  83. <meta name="theme-color" content="#ffe57e" />
  84. </head>
  85. <body role="document"<?php
  86. if ($isCpct):
  87. ?> class="navbar-spacing"<?php
  88. endif;
  89. ?>>
  90. <div id="passwordmodal" class="modal fade" role="dialog">
  91. <div class="modal-dialog">
  92. <div class="modal-content">
  93. <div class="modal-body">
  94. <form id="passwordform" role="form">
  95. <div class="form-group">
  96. <label for="passworddecrypt"><span class="glyphicon glyphicon-eye-open"></span> <?php echo I18n::_('Please enter the password for this paste:') ?></label>
  97. <input id="passworddecrypt" type="password" class="form-control" placeholder="<?php echo I18n::_('Enter password') ?>" autofocus>
  98. </div>
  99. <button type="submit" class="btn btn-success btn-block"><span class="glyphicon glyphicon-off"></span> <?php echo I18n::_('Decrypt') ?></button>
  100. </form>
  101. </div>
  102. </div>
  103. </div>
  104. </div>
  105. <nav class="navbar navbar-<?php echo $isDark ? 'inverse' : 'default'; ?> navbar-<?php echo $isCpct ? 'fixed' : 'static'; ?>-top"><?php
  106. if ($isCpct):
  107. ?><div class="container"><?php
  108. endif;
  109. ?>
  110. <div class="navbar-header">
  111. <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
  112. <span class="sr-only"><?php echo I18n::_('Toggle navigation'); ?></span>
  113. <span class="icon-bar"></span>
  114. <span class="icon-bar"></span>
  115. <span class="icon-bar"></span>
  116. </button>
  117. <a class="reloadlink navbar-brand" href="">
  118. <img alt="<?php echo I18n::_($NAME); ?>" src="img/icon.svg" width="38" />
  119. </a>
  120. </div>
  121. <div id="navbar" class="navbar-collapse collapse">
  122. <ul class="nav navbar-nav">
  123. <li>
  124. <?php
  125. if ($isPage):
  126. ?>
  127. <button id="sendbutton" type="button" class="hidden btn btn-<?php echo $isDark ? 'warning' : 'primary'; ?> navbar-btn">
  128. <span class="glyphicon glyphicon-upload" aria-hidden="true"></span> <?php echo I18n::_('Send'), PHP_EOL;
  129. else:
  130. ?>
  131. <button id="newbutton" type="button" class="reloadlink hidden btn btn-<?php echo $isDark ? 'warning' : 'default'; ?> navbar-btn">
  132. <span class="glyphicon glyphicon-file" aria-hidden="true"></span> <?php echo I18n::_('New'), PHP_EOL;
  133. endif;
  134. ?>
  135. </button>
  136. <?php
  137. if ($EXPIRECLONE):
  138. ?>
  139. <button id="clonebutton" type="button" class="hidden btn btn-<?php echo $isDark ? 'warning' : 'default'; ?> navbar-btn">
  140. <span class="glyphicon glyphicon-duplicate" aria-hidden="true"></span> <?php echo I18n::_('Clone'), PHP_EOL; ?>
  141. </button>
  142. <?php
  143. endif;
  144. ?>
  145. <button id="rawtextbutton" type="button" class="hidden btn btn-<?php echo $isDark ? 'warning' : 'default'; ?> navbar-btn">
  146. <span class="glyphicon glyphicon-text-background" aria-hidden="true"></span> <?php echo I18n::_('Raw text'), PHP_EOL; ?>
  147. </button>
  148. </li>
  149. <li class="dropdown">
  150. <select id="pasteExpiration" name="pasteExpiration" class="hidden">
  151. <?php
  152. foreach ($EXPIRE as $key => $value):
  153. ?>
  154. <option value="<?php echo $key; ?>"<?php
  155. if ($key == $EXPIREDEFAULT):
  156. ?> selected="selected"<?php
  157. endif;
  158. ?>><?php echo $value; ?></option>
  159. <?php
  160. endforeach;
  161. ?>
  162. </select>
  163. <a id="expiration" href="#" class="hidden dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"><?php echo I18n::_('Expires'); ?>: <span id="pasteExpirationDisplay"><?php echo $EXPIRE[$EXPIREDEFAULT]; ?></span> <span class="caret"></span></a>
  164. <ul class="dropdown-menu">
  165. <?php
  166. foreach ($EXPIRE as $key => $value):
  167. ?>
  168. <li>
  169. <a href="#" data-expiration="<?php echo $key; ?>">
  170. <?php echo $value, PHP_EOL; ?>
  171. </a>
  172. </li>
  173. <?php
  174. endforeach;
  175. ?>
  176. </ul>
  177. </li>
  178. <?php
  179. if ($isCpct):
  180. ?>
  181. <li id="formatter" class="dropdown">
  182. <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"><?php echo I18n::_('Options'); ?> <span class="caret"></span></a>
  183. <ul class="dropdown-menu">
  184. <li id="burnafterreadingoption" class="checkbox hidden">
  185. <label>
  186. <input type="checkbox" id="burnafterreading" name="burnafterreading"<?php
  187. if ($BURNAFTERREADINGSELECTED):
  188. ?> checked="checked"<?php
  189. endif;
  190. ?> />
  191. <?php echo I18n::_('Burn after reading'), PHP_EOL; ?>
  192. </label>
  193. </li>
  194. <?php
  195. if ($DISCUSSION):
  196. ?>
  197. <li id="opendisc" class="checkbox hidden">
  198. <label>
  199. <input type="checkbox" id="opendiscussion" name="opendiscussion"<?php
  200. if ($OPENDISCUSSION):
  201. ?> checked="checked"<?php
  202. endif;
  203. ?> />
  204. <?php echo I18n::_('Open discussion'), PHP_EOL; ?>
  205. </label>
  206. </li>
  207. <?php
  208. endif;
  209. ?>
  210. <li role="separator" class="divider"></li>
  211. <li>
  212. <div>
  213. <?php echo I18n::_('Format'); ?>: <span id="pasteFormatterDisplay"><?php echo $FORMATTER[$FORMATTERDEFAULT]; ?></span> <span class="caret"></span>
  214. </div>
  215. </li>
  216. <?php
  217. foreach ($FORMATTER as $key => $value):
  218. ?>
  219. <li>
  220. <a href="#" data-format="<?php echo $key; ?>">
  221. <?php echo $value, PHP_EOL; ?>
  222. </a>
  223. </li>
  224. <?php
  225. endforeach;
  226. ?>
  227. </ul>
  228. <select id="pasteFormatter" name="pasteFormatter" class="hidden">
  229. <?php
  230. foreach ($FORMATTER as $key => $value):
  231. ?>
  232. <option value="<?php echo $key; ?>"<?php
  233. if ($key == $FORMATTERDEFAULT):
  234. ?> selected="selected"<?php
  235. endif;
  236. ?>><?php echo $value; ?></option>
  237. <?php
  238. endforeach;
  239. ?>
  240. </select>
  241. </li>
  242. <?php
  243. else:
  244. ?>
  245. <li>
  246. <div id="burnafterreadingoption" class="navbar-text checkbox hidden">
  247. <label>
  248. <input type="checkbox" id="burnafterreading" name="burnafterreading"<?php
  249. if ($BURNAFTERREADINGSELECTED):
  250. ?> checked="checked"<?php
  251. endif;
  252. ?> />
  253. <?php echo I18n::_('Burn after reading'), PHP_EOL; ?>
  254. </label>
  255. </div>
  256. </li>
  257. <?php
  258. if ($DISCUSSION):
  259. ?>
  260. <li>
  261. <div id="opendisc" class="navbar-text checkbox hidden">
  262. <label>
  263. <input type="checkbox" id="opendiscussion" name="opendiscussion"<?php
  264. if ($OPENDISCUSSION):
  265. ?> checked="checked"<?php
  266. endif;
  267. ?> />
  268. <?php echo I18n::_('Open discussion'), PHP_EOL; ?>
  269. </label>
  270. </div>
  271. </li>
  272. <?php
  273. endif;
  274. endif;
  275. if ($PASSWORD):
  276. ?>
  277. <li>
  278. <div id="password" class="navbar-form hidden">
  279. <input type="password" id="passwordinput" placeholder="<?php echo I18n::_('Password (recommended)'); ?>" class="form-control" size="19" />
  280. </div>
  281. </li>
  282. <?php
  283. endif;
  284. if ($FILEUPLOAD):
  285. ?>
  286. <li id="attach" class="hidden dropdown">
  287. <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"><?php echo I18n::_('Attach a file'); ?> <span class="caret"></span></a>
  288. <ul class="dropdown-menu">
  289. <li id="filewrap">
  290. <div>
  291. <input type="file" id="file" name="file" />
  292. </div>
  293. </li>
  294. <li>
  295. <a id="fileremovebutton" href="#">
  296. <?php echo I18n::_('Remove attachment'), PHP_EOL; ?>
  297. </a>
  298. </li>
  299. </ul>
  300. </li>
  301. <?php
  302. endif;
  303. if (!$isCpct):
  304. ?>
  305. <li class="dropdown">
  306. <select id="pasteFormatter" name="pasteFormatter" class="hidden">
  307. <?php
  308. foreach ($FORMATTER as $key => $value):
  309. ?>
  310. <option value="<?php echo $key; ?>"<?php
  311. if ($key == $FORMATTERDEFAULT):
  312. ?> selected="selected"<?php
  313. endif;
  314. ?>><?php echo $value; ?></option>
  315. <?php
  316. endforeach;
  317. ?>
  318. </select>
  319. <a id="formatter" href="#" class="hidden dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"><?php echo I18n::_('Format'); ?>: <span id="pasteFormatterDisplay"><?php echo $FORMATTER[$FORMATTERDEFAULT]; ?></span> <span class="caret"></span></a>
  320. <ul class="dropdown-menu">
  321. <?php
  322. foreach ($FORMATTER as $key => $value):
  323. ?>
  324. <li>
  325. <a href="#" data-format="<?php echo $key; ?>">
  326. <?php echo $value, PHP_EOL; ?>
  327. </a>
  328. </li>
  329. <?php
  330. endforeach;
  331. ?>
  332. </ul>
  333. </li>
  334. <?php
  335. endif;
  336. ?>
  337. </ul>
  338. <ul class="nav navbar-nav pull-right">
  339. <?php
  340. if (strlen($LANGUAGESELECTION)):
  341. ?>
  342. <li id="language" class="dropdown">
  343. <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> <?php echo $LANGUAGES[$LANGUAGESELECTION][0]; ?> <span class="caret"></span></a>
  344. <ul class="dropdown-menu">
  345. <?php
  346. foreach ($LANGUAGES as $key => $value):
  347. ?>
  348. <li>
  349. <a href="#" data-lang="<?php echo $key; ?>">
  350. <?php echo $value[0]; ?> (<?php echo $value[1]; ?>)
  351. </a>
  352. </li>
  353. <?php
  354. endforeach;
  355. ?>
  356. </ul>
  357. </li>
  358. <?php
  359. endif;
  360. ?>
  361. <li>
  362. <?php
  363. if ($isPage):
  364. ?>
  365. <button id="newbutton" type="button" class="reloadlink hidden btn btn-<?php echo $isDark ? 'warning' : 'default'; ?> navbar-btn">
  366. <span class="glyphicon glyphicon-file" aria-hidden="true"></span> <?php echo I18n::_('New'), PHP_EOL;
  367. else:
  368. ?>
  369. <button id="sendbutton" type="button" class="hidden btn btn-<?php echo $isDark ? 'warning' : 'primary'; ?> navbar-btn">
  370. <span class="glyphicon glyphicon-upload" aria-hidden="true"></span> <?php echo I18n::_('Send'), PHP_EOL;
  371. endif;
  372. ?>
  373. </button>
  374. </li>
  375. </ul>
  376. </div>
  377. <?php
  378. if ($isCpct):
  379. ?></div><?php
  380. endif;
  381. ?></nav>
  382. <header class="container">
  383. <?php
  384. if (strlen($NOTICE)):
  385. ?>
  386. <div role="alert" class="alert alert-info">
  387. <span class="glyphicon glyphicon-info-sign" aria-hidden="true"></span> <?php echo htmlspecialchars($NOTICE), PHP_EOL; ?>
  388. </div>
  389. <?php
  390. endif;
  391. ?>
  392. <div id="remainingtime" role="alert" class="hidden alert alert-info">
  393. <span class="glyphicon glyphicon-info-sign" aria-hidden="true"></span>
  394. </div>
  395. <?php
  396. if ($FILEUPLOAD):
  397. ?>
  398. <div id="attachment" role="alert" class="hidden alert alert-info">
  399. <span class="glyphicon glyphicon-info-sign" aria-hidden="true"></span> <a><?php echo I18n::_('Download attachment'); ?></a> <span id="clonedfile" class="hidden"><?php echo I18n::_('Cloned file attached.'); ?></span>
  400. </div>
  401. <?php
  402. endif;
  403. if (strlen($STATUS)):
  404. ?>
  405. <div id="status" role="alert" class="alert alert-success">
  406. <span class="glyphicon glyphicon-ok" aria-hidden="true"></span> <?php echo htmlspecialchars($STATUS), PHP_EOL; ?>
  407. </div>
  408. <?php
  409. endif;
  410. ?>
  411. <div id="errormessage" role="alert" class="<?php
  412. if (!strlen($ERROR)):
  413. ?>hidden <?php
  414. endif;
  415. ?>alert alert-danger"><span class="glyphicon glyphicon-alert" aria-hidden="true"></span> <?php echo htmlspecialchars($ERROR); ?></div>
  416. <noscript><div id="noscript" role="alert" class="nonworking alert alert-<?php echo $isDark ? 'error' : 'warning'; ?>"><span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span> <?php echo I18n::_('JavaScript is required for %s to work.<br />Sorry for the inconvenience.', I18n::_($NAME)); ?></div></noscript>
  417. <div id="oldienotice" role="alert" class="hidden nonworking alert alert-danger"><span class="glyphicon glyphicon-alert" aria-hidden="true"></span> <?php echo I18n::_('%s requires a modern browser to work.', I18n::_($NAME)); ?></div>
  418. <div id="ienotice" role="alert" class="hidden alert alert-<?php echo $isDark ? 'error' : 'warning'; ?>"><span class="glyphicon glyphicon-question-sign" aria-hidden="true"></span> <?php echo I18n::_('Still using Internet Explorer? Do yourself a favor, switch to a modern browser:'), PHP_EOL; ?>
  419. <a href="https://www.mozilla.org/firefox/">Firefox</a>,
  420. <a href="https://www.opera.com/">Opera</a>,
  421. <a href="https://www.google.com/chrome">Chrome</a>,
  422. <a href="https://www.apple.com/safari">Safari</a>...
  423. </div>
  424. <div id="pasteresult" role="alert" class="hidden alert alert-success">
  425. <span class="glyphicon glyphicon-ok" aria-hidden="true"></span>
  426. <div id="deletelink"></div>
  427. <div id="pastelink">
  428. <?php
  429. if (strlen($URLSHORTENER)):
  430. ?>
  431. <button id="shortenbutton" data-shortener="<?php echo htmlspecialchars($URLSHORTENER); ?>" type="button" class="btn btn-<?php echo $isDark ? 'warning' : 'primary'; ?>">
  432. <span class="glyphicon glyphicon-send" aria-hidden="true"></span> <?php echo I18n::_('Shorten URL'), PHP_EOL; ?>
  433. </button>
  434. <?php
  435. endif;
  436. ?>
  437. </div>
  438. </div>
  439. <ul id="preview" class="nav nav-tabs hidden">
  440. <li role="presentation" class="active"><a id="messageedit" href="#"><?php echo I18n::_('Editor'); ?></a></li>
  441. <li role="presentation"><a id="messagepreview" href="#"><?php echo I18n::_('Preview'); ?></a></li>
  442. </ul>
  443. </header>
  444. <section class="container">
  445. <article class="row">
  446. <div id="image" class="col-md-12 text-center hidden"></div>
  447. <div id="prettymessage" class="col-md-12 hidden">
  448. <pre id="prettyprint" class="col-md-12 prettyprint linenums:1"></pre>
  449. </div>
  450. <div id="cleartext" class="col-md-12 hidden"></div>
  451. <p class="col-md-12"><textarea id="message" name="message" cols="80" rows="25" class="form-control hidden"></textarea></p>
  452. </article>
  453. </section>
  454. <section class="container">
  455. <div id="discussion" class="hidden">
  456. <h4><?php echo I18n::_('Discussion'); ?></h4>
  457. <div id="comments"></div>
  458. </div>
  459. </section>
  460. <section class="container">
  461. <div id="noscript" role="alert" class="nonworking alert alert-info noscript-hide"><span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true">
  462. <span> <?php echo I18n::_('Loading…'); ?></span><br>
  463. <span class="small"><?php echo I18n::_('In case this message never disappears please have a look at <a href="https://github.com/PrivateBin/PrivateBin/wiki/FAQ#why-does-not-the-loading-message-go-away">this FAQ for information to troubleshoot</a>.'); ?></span>
  464. </div>
  465. </section>
  466. <footer class="container">
  467. <div class="row">
  468. <h4 class="col-md-5 col-xs-8"><?php echo I18n::_($NAME); ?> <small>- <?php echo I18n::_('Because ignorance is bliss'); ?></small></h4>
  469. <p class="col-md-1 col-xs-4 text-center"><?php echo $VERSION; ?></p>
  470. <p id="aboutbox" class="col-md-6 col-xs-12">
  471. <?php echo I18n::_('%s is a minimalist, open source 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://privatebin.info/">project page</a>.', I18n::_($NAME)), PHP_EOL; ?>
  472. </p>
  473. </div>
  474. </footer>
  475. <div id="cipherdata" class="hidden"><?php echo htmlspecialchars($CIPHERDATA, ENT_NOQUOTES); ?></div>
  476. </body>
  477. </html>