bootstrap.php 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497
  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>
  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.6.js" integrity="sha512-DsyxLV/uBoQlRTJmW5Gb2SxXUXB+aYeZ6zk+NuXy8LuLyi8oGti9AGn6He5fUY2DtgQ2//RjfaZog8exFuunUQ==" 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.7.js" integrity="sha512-iztkobsvnjKfAtTNdHkGVjAYTrrtlC7mGp/54c40wowO7LhURYl3gVzzcEqGl/qKXQltJ2HwMrdLcNUdo+N/RQ==" 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.6.1.js" integrity="sha512-e6kAsBTgFnTBnEQXrq8BV6+XFwxb3kyWHeEPOl+KhxaWt3xImE2zAW2+yP3E2CQ7F9yoJl1poVU9qxkOEtVsTQ==" crossorigin="anonymous"></script>
  69. <script type="text/javascript" src="js/purify.min.js?<?php echo rawurlencode($VERSION); ?>" integrity="sha512-jJuy143F5Oy7oS3VkjzeJGBxIUuQ1H0eSjuvLGD3FiQzeu8Pwp5vI/jQ2dxlxSrzejmNMicdLHnIqH7R8Ft0lQ==" crossorigin="anonymous"></script>
  70. <?php
  71. endif;
  72. ?>
  73. <script type="text/javascript" src="js/privatebin.js?<?php echo rawurlencode($VERSION); ?>" integrity="sha512-CbxrV468ako77cl5jNqoqohA9EphJI54ha7/3Zv0K7lXW/0fC7l1L+SXpTq94FpQP4vSIZFmQnOkrmPxkgNbag==" crossorigin="anonymous"></script>
  74. <!--[if lt IE 10]>
  75. <style type="text/css">body {padding-left:60px;padding-right:60px;} #ienotice {display:block;} #oldienotice {display:block;}</style>
  76. <![endif]-->
  77. <link rel="apple-touch-icon" href="img/apple-touch-icon.png?<?php echo rawurlencode($VERSION); ?>" sizes="180x180" />
  78. <link rel="icon" type="image/png" href="img/favicon-32x32.png?<?php echo rawurlencode($VERSION); ?>" sizes="32x32" />
  79. <link rel="icon" type="image/png" href="img/favicon-16x16.png?<?php echo rawurlencode($VERSION); ?>" sizes="16x16" />
  80. <link rel="manifest" href="manifest.json?<?php echo rawurlencode($VERSION); ?>" />
  81. <link rel="mask-icon" href="img/safari-pinned-tab.svg?<?php echo rawurlencode($VERSION); ?>" color="#ffcc00" />
  82. <link rel="shortcut icon" href="img/favicon.ico">
  83. <meta name="msapplication-config" content="browserconfig.xml">
  84. <meta name="theme-color" content="#ffe57e" />
  85. </head>
  86. <body role="document"<?php
  87. if ($isCpct):
  88. ?> class="navbar-spacing"<?php
  89. endif;
  90. ?>>
  91. <div id="passwordmodal" class="modal fade" role="dialog">
  92. <div class="modal-dialog">
  93. <div class="modal-content">
  94. <div class="modal-body">
  95. <form id="passwordform" role="form">
  96. <div class="form-group">
  97. <label for="passworddecrypt"><span class="glyphicon glyphicon-eye-open"></span> <?php echo I18n::_('Please enter the password for this paste:') ?></label>
  98. <input id="passworddecrypt" type="password" class="form-control" placeholder="<?php echo I18n::_('Enter password') ?>">
  99. </div>
  100. <button type="submit" class="btn btn-success btn-block"><span class="glyphicon glyphicon-off"></span> <?php echo I18n::_('Decrypt') ?></button>
  101. </form>
  102. </div>
  103. </div>
  104. </div>
  105. </div>
  106. <nav class="navbar navbar-<?php echo $isDark ? 'inverse' : 'default'; ?> navbar-<?php echo $isCpct ? 'fixed' : 'static'; ?>-top"><?php
  107. if ($isCpct):
  108. ?><div class="container"><?php
  109. endif;
  110. ?>
  111. <div class="navbar-header">
  112. <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
  113. <span class="sr-only"><?php echo I18n::_('Toggle navigation'); ?></span>
  114. <span class="icon-bar"></span>
  115. <span class="icon-bar"></span>
  116. <span class="icon-bar"></span>
  117. </button>
  118. <a class="reloadlink navbar-brand" href="">
  119. <img alt="<?php echo I18n::_($NAME); ?>" src="img/icon.svg" width="38" />
  120. </a>
  121. </div>
  122. <div id="navbar" class="navbar-collapse collapse">
  123. <ul class="nav navbar-nav">
  124. <li id="loadingindicator" class="navbar-text hidden">
  125. <span class="glyphicon glyphicon-time" aria-hidden="true"></span>
  126. <?php echo I18n::_('Loading…'), PHP_EOL; ?>
  127. </li>
  128. <li>
  129. <?php
  130. if ($isPage):
  131. ?>
  132. <button id="sendbutton" type="button" class="hidden btn btn-<?php echo $isDark ? 'warning' : 'primary'; ?> navbar-btn">
  133. <span class="glyphicon glyphicon-upload" aria-hidden="true"></span> <?php echo I18n::_('Send'), PHP_EOL;
  134. else:
  135. ?>
  136. <button id="newbutton" type="button" class="hidden btn btn-<?php echo $isDark ? 'warning' : 'default'; ?> navbar-btn">
  137. <span class="glyphicon glyphicon-file" aria-hidden="true"></span> <?php echo I18n::_('New'), PHP_EOL;
  138. endif;
  139. ?>
  140. </button>
  141. <?php
  142. if ($EXPIRECLONE):
  143. ?>
  144. <button id="clonebutton" type="button" class="hidden btn btn-<?php echo $isDark ? 'warning' : 'default'; ?> navbar-btn">
  145. <span class="glyphicon glyphicon-duplicate" aria-hidden="true"></span> <?php echo I18n::_('Clone'), PHP_EOL; ?>
  146. </button>
  147. <?php
  148. endif;
  149. ?>
  150. <button id="rawtextbutton" type="button" class="hidden btn btn-<?php echo $isDark ? 'warning' : 'default'; ?> navbar-btn">
  151. <span class="glyphicon glyphicon-text-background" aria-hidden="true"></span> <?php echo I18n::_('Raw text'), PHP_EOL; ?>
  152. </button>
  153. </li>
  154. <li class="dropdown">
  155. <select id="pasteExpiration" name="pasteExpiration" class="hidden">
  156. <?php
  157. foreach ($EXPIRE as $key => $value):
  158. ?>
  159. <option value="<?php echo $key; ?>"<?php
  160. if ($key == $EXPIREDEFAULT):
  161. ?> selected="selected"<?php
  162. endif;
  163. ?>><?php echo $value; ?></option>
  164. <?php
  165. endforeach;
  166. ?>
  167. </select>
  168. <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>
  169. <ul class="dropdown-menu">
  170. <?php
  171. foreach ($EXPIRE as $key => $value):
  172. ?>
  173. <li>
  174. <a href="#" data-expiration="<?php echo $key; ?>">
  175. <?php echo $value, PHP_EOL; ?>
  176. </a>
  177. </li>
  178. <?php
  179. endforeach;
  180. ?>
  181. </ul>
  182. </li>
  183. <?php
  184. if ($isCpct):
  185. ?>
  186. <li id="formatter" class="dropdown">
  187. <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>
  188. <ul class="dropdown-menu">
  189. <li id="burnafterreadingoption" class="checkbox hidden">
  190. <label>
  191. <input type="checkbox" id="burnafterreading" name="burnafterreading"<?php
  192. if ($BURNAFTERREADINGSELECTED):
  193. ?> checked="checked"<?php
  194. endif;
  195. ?> />
  196. <?php echo I18n::_('Burn after reading'), PHP_EOL; ?>
  197. </label>
  198. </li>
  199. <?php
  200. if ($DISCUSSION):
  201. ?>
  202. <li id="opendiscussionoption" class="checkbox hidden">
  203. <label>
  204. <input type="checkbox" id="opendiscussion" name="opendiscussion"<?php
  205. if ($OPENDISCUSSION):
  206. ?> checked="checked"<?php
  207. endif;
  208. ?> />
  209. <?php echo I18n::_('Open discussion'), PHP_EOL; ?>
  210. </label>
  211. </li>
  212. <?php
  213. endif;
  214. ?>
  215. <li role="separator" class="divider"></li>
  216. <li>
  217. <div>
  218. <?php echo I18n::_('Format'); ?>: <span id="pasteFormatterDisplay"><?php echo $FORMATTER[$FORMATTERDEFAULT]; ?></span> <span class="caret"></span>
  219. </div>
  220. </li>
  221. <?php
  222. foreach ($FORMATTER as $key => $value):
  223. ?>
  224. <li>
  225. <a href="#" data-format="<?php echo $key; ?>">
  226. <?php echo $value, PHP_EOL; ?>
  227. </a>
  228. </li>
  229. <?php
  230. endforeach;
  231. ?>
  232. </ul>
  233. <select id="pasteFormatter" name="pasteFormatter" class="hidden">
  234. </select>
  235. </li>
  236. <?php
  237. else:
  238. ?>
  239. <li>
  240. <div id="burnafterreadingoption" class="navbar-text checkbox hidden">
  241. <label>
  242. <input type="checkbox" id="burnafterreading" name="burnafterreading"<?php
  243. if ($BURNAFTERREADINGSELECTED):
  244. ?> checked="checked"<?php
  245. endif;
  246. ?> />
  247. <?php echo I18n::_('Burn after reading'), PHP_EOL; ?>
  248. </label>
  249. </div>
  250. </li>
  251. <?php
  252. if ($DISCUSSION):
  253. ?>
  254. <li>
  255. <div id="opendiscussionoption" class="navbar-text checkbox hidden">
  256. <label>
  257. <input type="checkbox" id="opendiscussion" name="opendiscussion"<?php
  258. if ($OPENDISCUSSION):
  259. ?> checked="checked"<?php
  260. endif;
  261. ?> />
  262. <?php echo I18n::_('Open discussion'), PHP_EOL; ?>
  263. </label>
  264. </div>
  265. </li>
  266. <?php
  267. endif;
  268. endif;
  269. if ($PASSWORD):
  270. ?>
  271. <li>
  272. <div id="password" class="navbar-form hidden">
  273. <input type="password" id="passwordinput" placeholder="<?php echo I18n::_('Password (recommended)'); ?>" class="form-control" size="23" />
  274. </div>
  275. </li>
  276. <?php
  277. endif;
  278. if ($FILEUPLOAD):
  279. ?>
  280. <li id="attach" class="hidden dropdown">
  281. <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>
  282. <ul class="dropdown-menu">
  283. <li id="filewrap">
  284. <div>
  285. <input type="file" id="file" name="file" />
  286. </div>
  287. </li>
  288. <li id="customattachment" class="hidden"></li>
  289. <li>
  290. <a id="fileremovebutton" href="#">
  291. <?php echo I18n::_('Remove attachment'), PHP_EOL; ?>
  292. </a>
  293. </li>
  294. </ul>
  295. </li>
  296. <?php
  297. endif;
  298. if (!$isCpct):
  299. ?>
  300. <li class="dropdown">
  301. <select id="pasteFormatter" name="pasteFormatter" class="hidden">
  302. <?php
  303. foreach ($FORMATTER as $key => $value):
  304. ?>
  305. <option value="<?php echo $key; ?>"<?php
  306. if ($key == $FORMATTERDEFAULT):
  307. ?> selected="selected"<?php
  308. endif;
  309. ?>><?php echo $value; ?></option>
  310. <?php
  311. endforeach;
  312. ?>
  313. </select>
  314. <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>
  315. <ul class="dropdown-menu">
  316. <?php
  317. foreach ($FORMATTER as $key => $value):
  318. ?>
  319. <li>
  320. <a href="#" data-format="<?php echo $key; ?>">
  321. <?php echo $value, PHP_EOL; ?>
  322. </a>
  323. </li>
  324. <?php
  325. endforeach;
  326. ?>
  327. </ul>
  328. </li>
  329. <?php
  330. endif;
  331. ?>
  332. </ul>
  333. <ul class="nav navbar-nav pull-right">
  334. <?php
  335. if (strlen($LANGUAGESELECTION)):
  336. ?>
  337. <li id="language" class="dropdown">
  338. <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>
  339. <ul class="dropdown-menu">
  340. <?php
  341. foreach ($LANGUAGES as $key => $value):
  342. ?>
  343. <li>
  344. <a href="#" data-lang="<?php echo $key; ?>">
  345. <?php echo $value[0]; ?> (<?php echo $value[1]; ?>)
  346. </a>
  347. </li>
  348. <?php
  349. endforeach;
  350. ?>
  351. </ul>
  352. </li>
  353. <?php
  354. endif;
  355. ?>
  356. <li>
  357. <?php
  358. if ($isPage):
  359. ?>
  360. <button id="newbutton" type="button" class="reloadlink hidden btn btn-<?php echo $isDark ? 'warning' : 'default'; ?> navbar-btn">
  361. <span class="glyphicon glyphicon-file" aria-hidden="true"></span> <?php echo I18n::_('New'), PHP_EOL;
  362. else:
  363. ?>
  364. <button id="sendbutton" type="button" class="hidden btn btn-<?php echo $isDark ? 'warning' : 'primary'; ?> navbar-btn">
  365. <span class="glyphicon glyphicon-upload" aria-hidden="true"></span> <?php echo I18n::_('Send'), PHP_EOL;
  366. endif;
  367. ?>
  368. </button>
  369. </li>
  370. </ul>
  371. </div>
  372. <?php
  373. if ($isCpct):
  374. ?></div><?php
  375. endif;
  376. ?></nav>
  377. <main>
  378. <section class="container">
  379. <?php
  380. if (strlen($NOTICE)):
  381. ?>
  382. <div role="alert" class="alert alert-info">
  383. <span class="glyphicon glyphicon-info-sign" aria-hidden="true"></span>
  384. <?php echo htmlspecialchars($NOTICE), PHP_EOL; ?>
  385. </div>
  386. <?php
  387. endif;
  388. ?>
  389. <div id="remainingtime" role="alert" class="hidden alert alert-info">
  390. <span class="glyphicon glyphicon-fire" aria-hidden="true"></span>
  391. </div>
  392. <?php
  393. if ($FILEUPLOAD):
  394. ?>
  395. <div id="attachment" role="alert" class="hidden alert alert-info">
  396. <span class="glyphicon glyphicon-download-alt" aria-hidden="true"></span>
  397. <a class="alert-link"><?php echo I18n::_('Download attachment'), PHP_EOL; ?></a>
  398. </div>
  399. <?php
  400. endif;
  401. ?>
  402. <div id="status" role="alert" class="statusmessage alert alert-info<?php echo empty($STATUS) ? ' hidden' : '' ?>">
  403. <span class="glyphicon glyphicon-info-sign" aria-hidden="true"></span>
  404. <?php echo htmlspecialchars($STATUS), PHP_EOL; ?>
  405. </div>
  406. <div id="errormessage" role="alert" class="statusmessage<?php echo empty($ERROR) ? ' hidden' : '' ?> alert alert-danger">
  407. <span class="glyphicon glyphicon-alert" aria-hidden="true"></span>
  408. <?php echo htmlspecialchars($ERROR), PHP_EOL; ?>
  409. </div>
  410. <noscript>
  411. <div id="noscript" role="alert" class="nonworking alert alert-<?php echo $isDark ? 'error' : 'warning'; ?>">
  412. <span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
  413. <?php echo I18n::_('JavaScript is required for %s to work.<br />Sorry for the inconvenience.', I18n::_($NAME)), PHP_EOL; ?>
  414. </div>
  415. </noscript>
  416. <div id="oldienotice" role="alert" class="hidden nonworking alert alert-danger">
  417. <span class="glyphicon glyphicon-alert" aria-hidden="true"></span>
  418. <?php echo I18n::_('%s requires a modern browser to work.', I18n::_($NAME)), PHP_EOL; ?>
  419. </div>
  420. <div id="ienotice" role="alert" class="hidden alert alert-<?php echo $isDark ? 'error' : 'warning'; ?>">
  421. <span class="glyphicon glyphicon-question-sign" aria-hidden="true"></span>
  422. <?php echo I18n::_('Still using Internet Explorer? Do yourself a favor, switch to a modern browser:'), PHP_EOL; ?>
  423. <a href="https://www.mozilla.org/firefox/">Firefox</a>,
  424. <a href="https://www.opera.com/">Opera</a>,
  425. <a href="https://www.google.com/chrome">Chrome</a>…
  426. </div>
  427. <div id="pasteSuccess" role="alert" class="hidden alert alert-success">
  428. <span class="glyphicon glyphicon-ok" aria-hidden="true"></span>
  429. <div id="deletelink"></div>
  430. <div id="pastelink">
  431. <?php
  432. if (strlen($URLSHORTENER)):
  433. ?>
  434. <button id="shortenbutton" data-shortener="<?php echo htmlspecialchars($URLSHORTENER); ?>" type="button" class="btn btn-<?php echo $isDark ? 'warning' : 'primary'; ?>">
  435. <span class="glyphicon glyphicon-send" aria-hidden="true"></span> <?php echo I18n::_('Shorten URL'), PHP_EOL; ?>
  436. </button>
  437. <?php
  438. endif;
  439. ?>
  440. </div>
  441. </div>
  442. <ul id="editorTabs" class="nav nav-tabs hidden">
  443. <li role="presentation" class="active"><a id="messageedit" href="#"><?php echo I18n::_('Editor'); ?></a></li>
  444. <li role="presentation"><a id="messagepreview" href="#"><?php echo I18n::_('Preview'); ?></a></li>
  445. </ul>
  446. </section>
  447. <section class="container">
  448. <article class="row">
  449. <div id="placeholder" class="col-md-12 hidden"><?php echo I18n::_('+++ no paste text +++'); ?></div>
  450. <div id="attachmentPreview" class="col-md-12 text-center hidden"></div>
  451. <div id="prettymessage" class="col-md-12 hidden">
  452. <pre id="prettyprint" class="col-md-12 prettyprint linenums:1"></pre>
  453. </div>
  454. <div id="plaintext" class="col-md-12 hidden"></div>
  455. <p class="col-md-12"><textarea id="message" name="message" cols="80" rows="25" class="form-control hidden"></textarea></p>
  456. </article>
  457. </section>
  458. <section class="container">
  459. <div id="discussion" class="hidden">
  460. <h4><?php echo I18n::_('Discussion'); ?></h4>
  461. <div id="commentcontainer"></div>
  462. </div>
  463. </section>
  464. <section class="container">
  465. <div id="noscript" role="alert" class="nonworking alert alert-info noscript-hide">
  466. <span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
  467. <?php echo I18n::_('Loading…'); ?><br />
  468. <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>
  469. </div>
  470. </section>
  471. <footer class="container">
  472. <div class="row">
  473. <h4 class="col-md-5 col-xs-8"><?php echo I18n::_($NAME); ?> <small>- <?php echo I18n::_('Because ignorance is bliss'); ?></small></h4>
  474. <p class="col-md-1 col-xs-4 text-center"><?php echo $VERSION; ?></p>
  475. <p id="aboutbox" class="col-md-6 col-xs-12">
  476. <?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; ?>
  477. </p>
  478. </div>
  479. </footer>
  480. </main>
  481. <div id="serverdata" class="hidden" aria-hidden="true">
  482. <div id="cipherdata"><?php echo htmlspecialchars($CIPHERDATA, ENT_NOQUOTES); ?></div>
  483. <?php
  484. if ($DISCUSSION):
  485. ?>
  486. <div id="templates">
  487. <!-- @TODO: when I intend/structure this corrrectly Firefox adds whitespaces everywhere which completly destroy the layout. (same possible when you remove the template data below and show this area in the browser) -->
  488. <article id="commenttemplate" class="comment"><div class="commentmeta"><span class="nickname">name</span><span class="commentdate">0000-00-00</span></div><div class="commentdata">c</div><button class="btn btn-default btn-sm"><?php echo I18n::_('Reply'); ?></button></article>
  489. <p id="commenttailtemplate" class="comment"><button class="btn btn-default btn-sm"><?php echo I18n::_('Add comment'); ?></button></p>
  490. <div id="replytemplate" class="reply hidden"><input type="text" id="nickname" class="form-control" title="<?php echo I18n::_('Optional nickname…'); ?>" placeholder="<?php echo I18n::_('Optional nickname…'); ?>" /><textarea id="replymessage" class="replymessage form-control" cols="80" rows="7"></textarea><br /><div id="replystatus" role="alert" class="statusmessage hidden alert"><span class="glyphicon" aria-hidden="true"></span> </div><button id="replybutton" class="btn btn-default btn-sm"><?php echo I18n::_('Post comment'); ?></button></div>
  491. </div>
  492. <?php
  493. endif;
  494. ?>
  495. </div>
  496. </body>
  497. </html>