bootstrap.php 22 KB

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