2024-04-01 12:59:28 -04:00
< ? php
use PrivateBin\I18n ;
?> <!DOCTYPE html>
< html lang = " <?php echo I18n::getLanguage(); ?> " < ? php echo I18n :: isRtl () ? ' dir="rtl"' : '' ; ?> >
< head >
< meta charset = " utf-8 " />
< meta http - equiv = " Content-Security-Policy " content = " <?php echo I18n::encode( $CSPHEADER ); ?> " >
< meta http - equiv = " X-UA-Compatible " content = " IE=edge " >
< meta name = " viewport " content = " width=device-width, initial-scale=1 " >
< meta name = " robots " content = " noindex " />
< meta name = " google " content = " notranslate " >
< title >< ? php echo I18n :: _ ( $NAME ); ?> </title>
< link type = " text/css " rel = " stylesheet " href = " css/bootstrap5/bootstrap<?php echo I18n::isRtl() ? '.rtl' : ''; ?>-5.3.3.css " />
< link type = " text/css " rel = " stylesheet " href = " css/bootstrap5/privatebin.css?<?php echo rawurlencode( $VERSION ); ?> " />
< ? php
if ( $SYNTAXHIGHLIGHTING ) :
?>
< link type = " text/css " rel = " stylesheet " href = " css/prettify/prettify.css?<?php echo rawurlencode( $VERSION ); ?> " />
< ? php
if ( ! empty ( $SYNTAXHIGHLIGHTINGTHEME )) :
?>
< link type = " text/css " rel = " stylesheet " href = " css/prettify/<?php echo rawurlencode( $SYNTAXHIGHLIGHTINGTHEME ); ?>.css?<?php echo rawurlencode( $VERSION ); ?> " />
< ? php
endif ;
endif ;
?>
< noscript >< link type = " text/css " rel = " stylesheet " href = " css/noscript.css " /></ noscript >
2024-05-05 05:50:12 -04:00
< script type = " text/javascript " data - cfasync = " false " src = " js/jquery-3.7.1.js " integrity = " sha512-v2CJ7UaYy4JwqLDIrZUI/4hqeoQieOmAZNXBeQyjo21dadnwR+8ZaIJVT8EE2iyI61OV8e6M8PP2/4hpQINQ/g== " crossorigin = " anonymous " ></ script >
2024-04-01 12:59:28 -04:00
< ? php
if ( $QRCODE ) :
?>
< script async type = " text/javascript " data - cfasync = " false " src = " js/kjua-0.9.0.js " integrity = " sha512-CVn7af+vTMBd9RjoS4QM5fpLFEOtBCoB0zPtaqIDC7sF4F8qgUSRFQQpIyEDGsr6yrjbuOLzdf20tkHHmpaqwQ== " crossorigin = " anonymous " ></ script >
< ? php
endif ;
if ( $ZEROBINCOMPATIBILITY ) :
?>
< script type = " text/javascript " data - cfasync = " false " src = " js/base64-1.7.js " integrity = " sha512-JdwsSP3GyHR+jaCkns9CL9NTt4JUJqm/BsODGmYhBcj5EAPKcHYh+OiMfyHbcDLECe17TL0hjXADFkusAqiYgA== " crossorigin = " anonymous " ></ script >
< ? php
endif ;
?>
< script type = " text/javascript " data - cfasync = " false " src = " js/zlib-1.3.1.js " integrity = " sha512-Z90oppVx/mn0DG2k9airjFVQuliELlXLeT3SRiO6MLiUSbhGlAq+UFwmYbG4i9mwW87dkG8fgJPapGwnUq7Osg== " crossorigin = " anonymous " ></ script >
< script type = " text/javascript " data - cfasync = " false " src = " js/base-x-4.0.0.js " integrity = " sha512-nNPg5IGCwwrveZ8cA/yMGr5HiRS5Ps2H+s0J/mKTPjCPWUgFGGw7M5nqdnPD3VsRwCVysUh3Y8OWjeSKGkEQJQ== " crossorigin = " anonymous " ></ script >
< script type = " text/javascript " data - cfasync = " false " src = " js/rawinflate-0.3.js " integrity = " sha512-g8uelGgJW9A/Z1tB6Izxab++oj5kdD7B4qC7DHwZkB6DGMXKyzx7v5mvap2HXueI2IIn08YlRYM56jwWdm2ucQ== " crossorigin = " anonymous " ></ script >
< script type = " text/javascript " data - cfasync = " false " src = " js/bootstrap-5.3.3.js " integrity = " sha512-in2rcOpLTdJ7/pw5qjF4LWHFRtgoBDxXCy49H4YGOcVdGiPaQucGIbOqxt1JvmpvOpq3J/C7VTa0FlioakB2gQ== " crossorigin = " anonymous " ></ script >
2024-04-19 08:00:49 -04:00
< script type = " text/javascript " data - cfasync = " false " src = " js/dark-mode-switch.js?<?php echo rawurlencode( $VERSION ); ?> " integrity = " sha512-xdW325H1OW06oUf/Lc4ccJXOUW41tU08iyXVOiVL3SbTufQtKVWi1/cQPrWZ3FagPTNL2CwDMqZsHNmXruHnHg== " crossorigin = " anonymous " ></ script >
2024-04-01 12:59:28 -04:00
< ? php
if ( $SYNTAXHIGHLIGHTING ) :
?>
< script type = " text/javascript " data - cfasync = " false " src = " js/prettify.js?<?php echo rawurlencode( $VERSION ); ?> " integrity = " sha512-puO0Ogy++IoA2Pb9IjSxV1n4+kQkKXYAEUtVzfZpQepyDPyXk8hokiYDS7ybMogYlyyEIwMLpZqVhCkARQWLMg== " crossorigin = " anonymous " ></ script >
< ? php
endif ;
if ( $MARKDOWN ) :
?>
< script type = " text/javascript " data - cfasync = " false " src = " js/showdown-2.1.0.js " integrity = " sha512-WYXZgkTR0u/Y9SVIA4nTTOih0kXMEd8RRV6MLFdL6YU8ymhR528NLlYQt1nlJQbYz4EW+ZsS0fx1awhiQJme1Q== " crossorigin = " anonymous " ></ script >
< ? php
endif ;
?>
2024-05-12 04:18:49 -04:00
< script type = " text/javascript " data - cfasync = " false " src = " js/purify-3.1.3.js " integrity = " sha512-t/FKG/ucQVMWTWVouSMABSEx1r+uSyAI9eNDq0KEr9mPhkgxpJztHI/E72JIpv/+VwPs/Q4husxj14TE9Ps/wg== " crossorigin = " anonymous " ></ script >
2024-04-01 12:59:28 -04:00
< script type = " text/javascript " data - cfasync = " false " src = " js/legacy.js?<?php echo rawurlencode( $VERSION ); ?> " integrity = " sha512-LYos+qXHIRqFf5ZPNphvtTB0cgzHUizu2wwcOwcwz/VIpRv9lpcBgPYz4uq6jx0INwCAj6Fbnl5HoKiLufS2jg== " crossorigin = " anonymous " ></ script >
2024-05-30 12:52:18 -04:00
< script type = " text/javascript " data - cfasync = " false " src = " js/privatebin.js?<?php echo rawurlencode( $VERSION ); ?> " integrity = " sha512-cbmXvtZ/5gZPFjQDzP3IEhUAIhFPAoM31gw2kRYCT5xOh8wv9gXeDqI/t798luRW1xdC4gaYodjEFCzrsZR4mA== " crossorigin = " anonymous " ></ script >
2024-04-01 12:59:28 -04:00
<!-- icon -->
< link rel = " apple-touch-icon " href = " <?php echo I18n::encode( $BASEPATH ); ?>img/apple-touch-icon.png " sizes = " 180x180 " />
< link rel = " icon " type = " image/png " href = " img/favicon-32x32.png " sizes = " 32x32 " />
< link rel = " icon " type = " image/png " href = " img/favicon-16x16.png " sizes = " 16x16 " />
< link rel = " manifest " href = " manifest.json?<?php echo rawurlencode( $VERSION ); ?> " />
< link rel = " mask-icon " href = " img/safari-pinned-tab.svg " color = " #ffcc00 " />
< link rel = " shortcut icon " href = " img/favicon.ico " >
< meta name = " msapplication-config " content = " browserconfig.xml " >
< meta name = " theme-color " content = " #ffe57e " />
<!-- Twitter / social media cards -->
< meta name = " twitter:card " content = " summary " />
< meta name = " twitter:title " content = " <?php echo I18n::_('Encrypted note on %s', I18n::_( $NAME )) ?> " />
< meta name = " twitter:description " content = " <?php echo I18n::_('Visit this link to see the note. Giving the URL to anyone allows them to access the note, too.') ?> " />
< meta name = " twitter:image " content = " <?php echo I18n::encode( $BASEPATH ); ?>img/apple-touch-icon.png " />
< meta property = " og:title " content = " <?php echo I18n::_( $NAME ); ?> " />
< meta property = " og:site_name " content = " <?php echo I18n::_( $NAME ); ?> " />
< meta property = " og:description " content = " <?php echo I18n::_('Visit this link to see the note. Giving the URL to anyone allows them to access the note, too.') ?> " />
< meta property = " og:image " content = " <?php echo I18n::encode( $BASEPATH ); ?>img/apple-touch-icon.png " />
< meta property = " og:image:type " content = " image/png " />
< meta property = " og:image:width " content = " 180 " />
< meta property = " og:image:height " content = " 180 " />
</ head >
< body role = " document " data - compression = " <?php echo rawurlencode( $COMPRESSION ); ?> " >
< div id = " passwordmodal " tabindex = " -1 " class = " modal fade " role = " dialog " aria - hidden = " true " >
< div class = " modal-dialog " role = " document " >
< div class = " modal-content " >
< div class = " modal-body " >
< form id = " passwordform " role = " form " >
2024-04-21 05:01:40 -04:00
< div class = " mb-3 " >
2024-04-18 15:36:43 -04:00
< label for = " passworddecrypt " >< svg width = " 16 " height = " 16 " fill = " currentColor " aria - hidden = " true " >< use href = " img/bootstrap-icons.svg#eye " /></ svg > < ? php echo I18n :: _ ( 'Please enter the password for this paste:' ) ?> </label>
2024-04-01 12:59:28 -04:00
< input id = " passworddecrypt " type = " password " class = " form-control " placeholder = " <?php echo I18n::_('Enter password') ?> " required = " required " >
</ div >
2024-04-18 15:36:43 -04:00
< button type = " submit " class = " btn btn-success btn-block " >< svg width = " 16 " height = " 16 " fill = " currentColor " aria - hidden = " true " >< use href = " img/bootstrap-icons.svg#power " /></ svg > < ? php echo I18n :: _ ( 'Decrypt' ) ?> </button>
2024-04-01 12:59:28 -04:00
</ form >
</ div >
</ div >
</ div >
</ div >
< div id = " loadconfirmmodal " tabindex = " -1 " class = " modal fade " role = " dialog " aria - hidden = " true " >
< div class = " modal-dialog " role = " document " >
< div class = " modal-content " >
< div class = " modal-header " >
2024-04-18 15:36:43 -04:00
< h5 class = " modal-title " >< ? php echo I18n :: _ ( 'This secret message can only be displayed once. Would you like to see it now?' ) ?> </h5>
< button type = " button " class = " btn-close " data - bs - dismiss = " modal " aria - label = " <?php echo I18n::_('Close') ?> " ></ button >
2024-04-01 12:59:28 -04:00
</ div >
< div class = " modal-body text-center " >
2024-05-05 14:52:29 -04:00
< button id = " loadconfirm-open-now " type = " button " class = " btn btn-success " data - bs - dismiss = " modal " >< svg width = " 16 " height = " 16 " fill = " currentColor " aria - hidden = " true " >< use href = " img/bootstrap-icons.svg#cloud-download " /></ svg > < ? php echo I18n :: _ ( 'Yes, see it' ) ?> </button>
2024-04-01 12:59:28 -04:00
</ div >
</ div >
</ div >
</ div >
< ? php
if ( $QRCODE ) :
?>
< div id = " qrcodemodal " tabindex = " -1 " class = " modal fade " role = " dialog " aria - hidden = " true " >
< div class = " modal-dialog " role = " document " >
< div class = " modal-content " >
< div class = " modal-header " >
2024-04-18 15:36:43 -04:00
< h5 class = " modal-title " >< ? php echo I18n :: _ ( 'QR code' ) ?> </h5>
< button type = " button " class = " btn-close " data - bs - dismiss = " modal " aria - label = " <?php echo I18n::_('Close') ?> " ></ button >
2024-04-01 12:59:28 -04:00
</ div >
< div class = " modal-body " >
< div class = " mx-auto " id = " qrcode-display " ></ div >
</ div >
</ div >
</ div >
</ div >
< ? php
endif ;
if ( $EMAIL ) :
?>
< div id = " emailconfirmmodal " tabindex = " -1 " class = " modal fade " role = " dialog " aria - hidden = " true " >
< div class = " modal-dialog " role = " document " >
< div class = " modal-content " >
< div class = " modal-header " >
2024-04-18 15:36:43 -04:00
< h5 class = " modal-title " >< ? php echo I18n :: _ ( 'Recipient may become aware of your timezone, convert time to UTC?' ) ?> </h5>
< button type = " button " class = " btn-close " data - bs - dismiss = " modal " aria - label = " <?php echo I18n::_('Close') ?> " ></ button >
2024-04-01 12:59:28 -04:00
</ div >
< div class = " modal-body row " >
< div class = " col-xs-12 col-md-6 " >
2024-04-18 15:36:43 -04:00
< button id = " emailconfirm-timezone-current " type = " button " class = " btn btn-danger " >< svg width = " 16 " height = " 16 " fill = " currentColor " aria - hidden = " true " >< use href = " img/bootstrap-icons.svg#clock " /></ svg > < ? php echo I18n :: _ ( 'Use Current Timezone' ) ?> </button>
2024-04-01 12:59:28 -04:00
</ div >
< div class = " col-xs-12 col-md-6 text-right " >
2024-04-18 15:36:43 -04:00
< button id = " emailconfirm-timezone-utc " type = " button " class = " btn btn-success " >< svg width = " 16 " height = " 16 " fill = " currentColor " aria - hidden = " true " >< use href = " img/bootstrap-icons.svg#globe " /></ svg > < ? php echo I18n :: _ ( 'Convert To UTC' ) ?> </button>
2024-04-01 12:59:28 -04:00
</ div >
</ div >
</ div >
</ div >
</ div >
< ? php
endif ;
?>
2024-05-09 12:18:57 -04:00
< nav class = " navbar navbar-expand-lg bg-body-tertiary text-nowrap " >
2024-04-01 12:59:28 -04:00
< div class = " container-fluid " >
< a class = " reloadlink navbar-brand " href = " " >
< img alt = " <?php echo I18n::_( $NAME ); ?> " src = " img/icon.svg " height = " 38 " />
</ a >
< button class = " navbar-toggler " type = " button " data - bs - toggle = " collapse " data - bs - target = " #navbar " aria - controls = " navbar " aria - expanded = " false " aria - label = " <?php echo I18n::_('Toggle navigation'); ?> " >
< span class = " navbar-toggler-icon " ></ span >
</ button >
< div id = " navbar " class = " collapse navbar-collapse " >
2024-05-09 12:18:57 -04:00
< ul class = " navbar-nav me-auto gap-2 align-items-lg-center align-items-stretch " >
2024-05-02 02:01:37 -04:00
< li id = " loadingindicator " class = " navbar-text hidden me-auto " >
2024-04-18 15:36:43 -04:00
< svg width = " 16 " height = " 16 " fill = " currentColor " aria - hidden = " true " >< use href = " img/bootstrap-icons.svg#clock " /></ svg >
2024-04-01 12:59:28 -04:00
< ? php echo I18n :: _ ( 'Loading…' ), PHP_EOL ; ?>
</ li >
2024-05-09 12:18:57 -04:00
< li class = " nav-item d-flex flex-lg-row flex-column " >
2024-04-01 12:59:28 -04:00
< button id = " retrybutton " type = " button " class = " reloadlink hidden btn btn-primary " >
2024-04-18 15:36:43 -04:00
< svg width = " 16 " height = " 16 " fill = " currentColor " aria - hidden = " true " >< use href = " img/bootstrap-icons.svg#repeat " /></ svg > < ? php echo I18n :: _ ( 'Retry' ), PHP_EOL ; ?>
2024-04-01 12:59:28 -04:00
</ button >
</ li >
2024-05-09 12:18:57 -04:00
< li class = " nav-item d-flex flex-lg-row flex-column gap-2 " >
< button id = " newbutton " type = " button " class = " hidden btn btn-secondary flex-fill " >
2024-04-18 15:36:43 -04:00
< svg width = " 16 " height = " 16 " fill = " currentColor " aria - hidden = " true " >< use href = " img/bootstrap-icons.svg#file-earmark " /></ svg > < ? php echo I18n :: _ ( 'New' ), PHP_EOL ; ?>
2024-04-01 12:59:28 -04:00
</ button >
2024-05-09 12:18:57 -04:00
< button id = " clonebutton " type = " button " class = " hidden btn btn-secondary flex-fill " >
2024-04-18 15:36:43 -04:00
< svg width = " 16 " height = " 16 " fill = " currentColor " aria - hidden = " true " >< use href = " img/bootstrap-icons.svg#copy " /></ svg > < ? php echo I18n :: _ ( 'Clone' ), PHP_EOL ; ?>
2024-04-01 12:59:28 -04:00
</ button >
2024-05-09 12:18:57 -04:00
< button id = " rawtextbutton " type = " button " class = " hidden btn btn-secondary flex-fill " >
2024-04-18 15:36:43 -04:00
< svg width = " 16 " height = " 16 " fill = " currentColor " aria - hidden = " true " >< use href = " img/bootstrap-icons.svg#filetype-txt " /></ svg > < ? php echo I18n :: _ ( 'Raw text' ), PHP_EOL ; ?>
2024-04-01 12:59:28 -04:00
</ button >
2024-05-09 12:18:57 -04:00
< button id = " downloadtextbutton " type = " button " class = " hidden btn btn-secondary flex-fill " >
2024-04-18 15:36:43 -04:00
< svg width = " 16 " height = " 16 " fill = " currentColor " aria - hidden = " true " >< use href = " img/bootstrap-icons.svg#download " /></ svg > < ? php echo I18n :: _ ( 'Save paste' ), PHP_EOL ; ?>
2024-04-01 12:59:28 -04:00
</ button >
< ? php
if ( $EMAIL ) :
?>
2024-05-09 12:18:57 -04:00
< button id = " emaillink " type = " button " class = " hidden btn btn-secondary flex-fill " >
2024-04-18 15:36:43 -04:00
< svg width = " 16 " height = " 16 " fill = " currentColor " aria - hidden = " true " >< use href = " img/bootstrap-icons.svg#envelope " /></ svg > < ? php echo I18n :: _ ( 'Email' ), PHP_EOL ; ?>
2024-04-01 12:59:28 -04:00
</ button >
< ? php
endif ;
if ( $QRCODE ) :
?>
2024-05-09 12:18:57 -04:00
< button id = " qrcodelink " type = " button " data - toggle = " modal " data - target = " #qrcodemodal " class = " hidden btn btn-secondary flex-fill " >
2024-04-18 15:36:43 -04:00
< svg width = " 16 " height = " 16 " fill = " currentColor " aria - hidden = " true " >< use href = " img/bootstrap-icons.svg#qr-code " /></ svg > < ? php echo I18n :: _ ( 'QR code' ), PHP_EOL ; ?>
2024-04-01 12:59:28 -04:00
</ button >
< ? php
endif ;
?>
</ li >
2024-05-09 12:18:57 -04:00
< li id = " expiration " class = " nav-item d-flex hidden " >
2024-04-01 12:59:28 -04:00
< label for = " pasteExpiration " class = " form-label my-auto me-1 " >< ? php echo I18n :: _ ( 'Expires' ); ?> :</label>
< select id = " pasteExpiration " name = " pasteExpiration " class = " form-select " >
< ? php
foreach ( $EXPIRE as $key => $value ) :
?>
< option value = " <?php echo $key ; ?> " < ? php
if ( $key == $EXPIREDEFAULT ) :
?> selected="selected"<?php
endif ;
?> ><?php echo $value; ?></option>
< ? php
endforeach ;
?>
</ select >
</ li >
2024-05-09 12:18:57 -04:00
< li class = " nav-item " >
2024-04-01 12:59:28 -04:00
< div id = " burnafterreadingoption " class = " navbar-text form-check hidden " >
< input class = " form-check-input " type = " checkbox " id = " burnafterreading " name = " burnafterreading " < ? php
if ( $BURNAFTERREADINGSELECTED ) :
?> checked="checked"<?php
endif ;
?> />
< label class = " form-check-label " for = " burnafterreading " >
< ? php echo I18n :: _ ( 'Burn after reading' ), PHP_EOL ; ?>
</ label >
</ div >
</ li >
< ? php
if ( $DISCUSSION ) :
?>
2024-05-09 12:18:57 -04:00
< li class = " nav-item " >
2024-04-01 12:59:28 -04:00
< div id = " opendiscussionoption " class = " navbar-text form-check hidden " >
< input class = " form-check-input " type = " checkbox " id = " opendiscussion " name = " opendiscussion " < ? php
if ( $OPENDISCUSSION ) :
?> checked="checked"<?php
endif ;
?> />
< label class = " form-check-label " for = " opendiscussion " >
< ? php echo I18n :: _ ( 'Open discussion' ), PHP_EOL ; ?>
</ label >
</ div >
</ li >
< ? php
endif ;
if ( $PASSWORD ) :
?>
2024-05-09 12:18:57 -04:00
< li class = " nav-item " >
2024-04-01 12:59:28 -04:00
< div id = " password " class = " navbar-form hidden " >
< input type = " password " id = " passwordinput " placeholder = " <?php echo I18n::_('Password (recommended)'); ?> " class = " form-control " size = " 23 " />
</ div >
</ li >
< ? php
endif ;
if ( $FILEUPLOAD ) :
?>
2024-05-09 12:18:57 -04:00
< li id = " attach " class = " nav-item hidden dropdown " >
2024-04-01 12:59:28 -04:00
< a href = " # " class = " nav-link dropdown-toggle " data - bs - toggle = " dropdown " role = " button " aria - expanded = " false " >< ? php echo I18n :: _ ( 'Attach a file' ); ?> </a>
2024-05-09 11:00:30 -04:00
< ul class = " dropdown-menu px-2 " >
2024-04-18 15:36:43 -04:00
< li id = " filewrap " >
2024-04-01 12:59:28 -04:00
< div >
< input type = " file " id = " file " name = " file " class = " form-control " />
</ div >
< div id = " dragAndDropFileName " class = " dragAndDropFile " >< ? php echo I18n :: _ ( 'alternatively drag & drop a file or paste an image from the clipboard' ); ?> </div>
</ li >
2024-04-18 15:36:43 -04:00
< li id = " customattachment " class = " hidden " ></ li >
< li >
2024-04-23 17:09:21 -04:00
< a id = " fileremovebutton " href = " # " class = " dropdown-item " >
2024-04-01 12:59:28 -04:00
< ? php echo I18n :: _ ( 'Remove attachment' ), PHP_EOL ; ?>
</ a >
</ li >
</ ul >
</ li >
< ? php
endif ;
?>
2024-05-09 12:18:57 -04:00
< li id = " formatter " class = " nav-item d-flex hidden " >
2024-04-01 12:59:28 -04:00
< label for = " pasteFormatter " class = " form-label my-auto me-1 " >< ? php echo I18n :: _ ( 'Format' ); ?> :</label>
< select id = " pasteFormatter " name = " pasteFormatter " class = " form-select " >
< ? php
foreach ( $FORMATTER as $key => $value ) :
?>
< option value = " <?php echo $key ; ?> " < ? php
if ( $key == $FORMATTERDEFAULT ) :
?> selected="selected"<?php
endif ;
?> ><?php echo $value; ?></option>
< ? php
endforeach ;
?>
</ select >
</ li >
</ ul >
2024-05-09 12:18:57 -04:00
< ul class = " navbar-nav gap-2 " >
2024-04-01 12:59:28 -04:00
< li class = " nav-item " >
< div class = " form-check form-switch navbar-text " >
< input id = " bd-theme " type = " checkbox " class = " form-check-input " >
< label for = " bd-theme " class = " form-check-label " >< ? php echo I18n :: _ ( 'Dark Mode' ); ?> </label>
</ div >
</ li >
< ? php
if ( ! empty ( $LANGUAGESELECTION )) :
?>
2024-05-09 12:18:57 -04:00
< li id = " language " class = " nav-item dropdown " >
2024-04-01 12:59:28 -04:00
< a href = " # " class = " nav-link dropdown-toggle " data - bs - toggle = " dropdown " role = " button " aria - expanded = " false " >
2024-04-18 15:36:43 -04:00
< svg width = " 16 " height = " 16 " fill = " currentColor " aria - hidden = " true " >< use href = " img/bootstrap-icons.svg#flag " /></ svg > < ? php echo $LANGUAGES [ $LANGUAGESELECTION ][ 0 ], PHP_EOL ; ?>
2024-04-01 12:59:28 -04:00
</ a >
2024-05-02 02:03:55 -04:00
< ul class = " dropdown-menu dropdown-menu-end " role = " menu " >
2024-04-01 12:59:28 -04:00
< ? php
foreach ( $LANGUAGES as $key => $value ) :
?>
2024-04-18 15:36:43 -04:00
< li >
< a href = " # " class = " dropdown-item " data - lang = " <?php echo $key ; ?> " >
2024-04-01 12:59:28 -04:00
< ? php echo $value [ 0 ]; ?> (<?php echo $value[1]; ?>)
</ a >
</ li >
< ? php
endforeach ;
?>
</ ul >
</ li >
< ? php
endif ;
?>
</ ul >
</ div >
</ div >
</ nav >
< main >
2024-05-20 15:28:13 -04:00
< section class = " container-fluid mt-2 " >
2024-04-01 12:59:28 -04:00
< ? php
if ( ! empty ( $NOTICE )) :
?>
< div role = " alert " class = " alert alert-info " >
2024-04-18 15:36:43 -04:00
< svg width = " 16 " height = " 16 " fill = " currentColor " aria - hidden = " true " >< use href = " img/bootstrap-icons.svg#info-circle " /></ svg >
2024-04-01 12:59:28 -04:00
< ? php echo I18n :: encode ( $NOTICE ), PHP_EOL ; ?>
</ div >
< ? php
endif ;
?>
< div id = " remainingtime " role = " alert " class = " hidden alert alert-info " >
2024-04-18 15:36:43 -04:00
< svg width = " 16 " height = " 16 " fill = " currentColor " aria - hidden = " true " >< use href = " img/bootstrap-icons.svg#fire " /></ svg >
2024-04-01 12:59:28 -04:00
</ div >
< ? php
if ( $FILEUPLOAD ) :
?>
< div id = " attachment " role = " alert " class = " hidden alert alert-info " >
2024-04-18 15:36:43 -04:00
< svg width = " 16 " height = " 16 " fill = " currentColor " aria - hidden = " true " >< use href = " img/bootstrap-icons.svg#download " /></ svg >
2024-04-21 05:02:14 -04:00
< a class = " alert-link " >< ? php echo I18n :: _ ( 'Download attachment' ); ?> </a>
2024-04-01 12:59:28 -04:00
</ div >
< ? php
endif ;
?>
< div id = " status " role = " alert " class = " alert alert-info<?php echo empty( $STATUS ) ? ' hidden' : '' ?> " >
2024-04-18 15:36:43 -04:00
< svg width = " 16 " height = " 16 " fill = " currentColor " aria - hidden = " true " >< use href = " img/bootstrap-icons.svg#info-circle " /></ svg >
2024-04-01 12:59:28 -04:00
< ? php echo I18n :: encode ( $STATUS ), PHP_EOL ; ?>
</ div >
< div id = " errormessage " role = " alert " class = " <?php echo empty( $ERROR ) ? 'hidden' : '' ?> alert alert-danger " >
2024-04-18 15:36:43 -04:00
< svg width = " 16 " height = " 16 " fill = " currentColor " aria - hidden = " true " >< use href = " img/bootstrap-icons.svg#exclamation-triangle " /></ svg >
2024-04-01 12:59:28 -04:00
< ? php echo I18n :: encode ( $ERROR ), PHP_EOL ; ?>
</ div >
< noscript >
< div id = " noscript " role = " alert " class = " alert alert-warning " >
2024-04-18 15:36:43 -04:00
< svg width = " 16 " height = " 16 " fill = " currentColor " aria - hidden = " true " >< use href = " img/bootstrap-icons.svg#exclamation-circle " /></ svg >
2024-04-01 12:59:28 -04:00
< ? php echo I18n :: _ ( 'JavaScript is required for %s to work. Sorry for the inconvenience.' , I18n :: _ ( $NAME )), PHP_EOL ; ?>
</ div >
</ noscript >
< div id = " oldnotice " role = " alert " class = " hidden alert alert-danger " >
2024-04-18 15:36:43 -04:00
< svg width = " 16 " height = " 16 " fill = " currentColor " aria - hidden = " true " >< use href = " img/bootstrap-icons.svg#exclamation-triangle " /></ svg >
2024-04-01 12:59:28 -04:00
< ? php echo I18n :: _ ( '%s requires a modern browser to work.' , I18n :: _ ( $NAME )), PHP_EOL ; ?>
< a href = " https://www.mozilla.org/firefox/ " > Firefox </ a > ,
< a href = " https://www.opera.com/ " > Opera </ a > ,
< a href = " https://www.google.com/chrome " > Chrome </ a > … < br />
< span class = " small " >< ? php echo I18n :: _ ( 'For more information <a href="%s">see this FAQ entry</a>.' , 'https://github.com/PrivateBin/PrivateBin/wiki/FAQ#why-does-it-show-me-the-error-privatebin-requires-a-modern-browser-to-work' ); ?> </span>
</ div >
< ? php
if ( $HTTPWARNING ) :
?>
< div id = " httpnotice " role = " alert " class = " hidden alert alert-danger " >
2024-04-18 15:36:43 -04:00
< svg width = " 16 " height = " 16 " fill = " currentColor " aria - hidden = " true " >< use href = " img/bootstrap-icons.svg#exclamation-triangle " /></ svg >
2024-04-21 05:02:14 -04:00
< ? php echo I18n :: _ ( 'This website is using an insecure connection! Please only use it for testing.' ); ?> <br />
2024-04-01 12:59:28 -04:00
< span class = " small " >< ? php echo I18n :: _ ( 'For more information <a href="%s">see this FAQ entry</a>.' , 'https://github.com/PrivateBin/PrivateBin/wiki/FAQ#why-does-it-show-me-an-error-about-an-insecure-connection' ); ?> </span>
</ div >
< div id = " insecurecontextnotice " role = " alert " class = " hidden alert alert-danger " >
2024-04-18 15:36:43 -04:00
< svg width = " 16 " height = " 16 " fill = " currentColor " aria - hidden = " true " >< use href = " img/bootstrap-icons.svg#exclamation-triangle " /></ svg >
2024-04-21 05:02:14 -04:00
< ? php echo I18n :: _ ( 'Your browser may require an HTTPS connection to support the WebCrypto API. Try <a href="%s">switching to HTTPS</a>.' , $HTTPSLINK ), PHP_EOL ; ?>
2024-04-01 12:59:28 -04:00
</ div >
< ? php
endif ;
?>
< div id = " pastesuccess " class = " hidden " >
< div role = " alert " class = " alert alert-success " >
2024-04-18 15:36:43 -04:00
< svg width = " 16 " height = " 16 " fill = " currentColor " aria - hidden = " true " >< use href = " img/bootstrap-icons.svg#check " /></ svg >
2024-04-01 12:59:28 -04:00
< div id = " deletelink " ></ div >
< div id = " pastelink " ></ div >
</ div >
< ? php
if ( ! empty ( $URLSHORTENER )) :
?>
< p >
< button id = " shortenbutton " data - shortener = " <?php echo I18n::encode( $URLSHORTENER ); ?> " type = " button " class = " btn btn-primary btn-block " >
2024-04-18 15:36:43 -04:00
< svg width = " 16 " height = " 16 " fill = " currentColor " aria - hidden = " true " >< use href = " img/bootstrap-icons.svg#send " /></ svg > < ? php echo I18n :: _ ( 'Shorten URL' ), PHP_EOL ; ?>
2024-04-01 12:59:28 -04:00
</ button >
</ p >
< div role = " alert " class = " alert alert-danger " >
2024-04-18 15:36:43 -04:00
< svg width = " 16 " height = " 16 " fill = " currentColor " aria - hidden = " true " >< use href = " img/bootstrap-icons.svg#exclamation-circle " /></ svg >
2024-04-01 12:59:28 -04:00
< ? php echo I18n :: _ ( 'URL shortener may expose your decrypt key in URL.' ), PHP_EOL ; ?>
</ div >
< ? php
endif ;
?>
</ div >
< ul id = " editorTabs " class = " nav nav-tabs hidden " >
< li role = " presentation " class = " nav-item me-1 " >< a class = " nav-link active " role = " tab " id = " messageedit " href = " # " >< ? php echo I18n :: _ ( 'Editor' ); ?> </a></li>
< li role = " presentation " class = " nav-item me-1 " >< a class = " nav-link " role = " tab " id = " messagepreview " href = " # " >< ? php echo I18n :: _ ( 'Preview' ); ?> </a></li>
< li role = " presentation " class = " nav-item ms-auto " >
< button id = " sendbutton " type = " button " class = " hidden btn btn-primary " >
2024-04-18 15:36:43 -04:00
< svg width = " 16 " height = " 16 " fill = " currentColor " aria - hidden = " true " >< use href = " img/bootstrap-icons.svg#cloud-upload " /></ svg > < ? php echo I18n :: _ ( 'Create' ), PHP_EOL ; ?>
2024-04-01 12:59:28 -04:00
</ button >
</ li >
</ ul >
</ section >
2024-05-20 15:28:13 -04:00
< section class = " container-fluid " >
< article >
2024-04-01 12:59:28 -04:00
< div id = " placeholder " class = " col-md-12 hidden " >< ? php echo I18n :: _ ( '+++ no paste text +++' ); ?> </div>
< div id = " attachmentPreview " class = " col-md-12 text-center hidden " ></ div >
2024-05-09 11:53:26 -04:00
< div id = " prettymessage " class = " card col-md-12 hidden " >
< pre id = " prettyprint " class = " card-body col-md-12 prettyprint linenums:1 " ></ pre >
2024-04-01 12:59:28 -04:00
</ div >
< div id = " plaintext " 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 >
2024-05-20 15:28:13 -04:00
< section class = " container-fluid " >
2024-04-01 12:59:28 -04:00
< div id = " discussion " class = " hidden " >
< h4 >< ? php echo I18n :: _ ( 'Discussion' ); ?> </h4>
< div id = " commentcontainer " ></ div >
</ div >
</ section >
2024-05-20 15:28:13 -04:00
< section class = " container-fluid " >
2024-04-01 12:59:28 -04:00
< div id = " noscript " role = " alert " class = " alert alert-info noscript-hide " >
2024-04-18 15:36:43 -04:00
< svg width = " 16 " height = " 16 " fill = " currentColor " aria - hidden = " true " >< use href = " img/bootstrap-icons.svg#exclamation-circle " /></ svg >
2024-04-01 12:59:28 -04:00
< ? php echo I18n :: _ ( 'Loading…' ); ?> <br />
< span class = " small " >< ? php echo I18n :: _ ( 'In case this message never disappears please have a look at <a href="%s">this FAQ for information to troubleshoot</a>.' , 'https://github.com/PrivateBin/PrivateBin/wiki/FAQ#why-does-the-loading-message-not-go-away' ); ?> </span>
</ div >
</ section >
2024-05-20 15:28:13 -04:00
< footer class = " container-fluid " >
2024-04-01 12:59:28 -04:00
< div class = " row " >
2024-05-09 12:18:57 -04:00
< h5 class = " col-md-5 col-xs-8 " >< ? php echo I18n :: _ ( $NAME ); ?> <small>- <?php echo I18n::_('Because ignorance is bliss'); ?></small></h5>
2024-04-01 12:59:28 -04:00
< p class = " col-md-1 col-xs-4 text-center " >< ? php echo $VERSION ; ?> </p>
< p id = " aboutbox " class = " col-md-6 col-xs-12 " >
< ? php echo sprintf (
I18n :: _ ( '%s is a minimalist, open source online pastebin where the server has zero knowledge of pasted data. Data is encrypted/decrypted %sin the browser%s using 256 bits AES.' ,
I18n :: _ ( $NAME ),
'%s' , '%s'
),
'<i>' , '</i>' ), ' ' , $INFO , PHP_EOL ;
?>
</ p >
</ div >
</ footer >
</ main >
< ? php
if ( $DISCUSSION ) :
?>
< div id = " serverdata " class = " hidden " aria - hidden = " true " >
< div id = " templates " >
2024-04-23 15:15:00 -04:00
< 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-secondary btn-sm " >< ? php echo I18n :: _ ( 'Reply' ); ?> </button>
</ article >
< p id = " commenttailtemplate " class = " comment " >
< button class = " btn btn-secondary btn-sm " >< ? php echo I18n :: _ ( 'Add comment' ); ?> </button>
</ p >
< 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 " >
< svg width = " 16 " height = " 16 " fill = " currentColor " aria - hidden = " true " >< use href = " img/bootstrap-icons.svg#info-circle " /></ svg >
</ div >
< button id = " replybutton " class = " btn btn-secondary btn-sm " >< ? php echo I18n :: _ ( 'Post comment' ); ?> </button>
</ div >
2024-04-01 12:59:28 -04:00
</ div >
</ div >
< ? php
endif ;
?>
< ? php
if ( $FILEUPLOAD ) :
?>
< div id = " dropzone " class = " hidden " tabindex = " -1 " aria - hidden = " true " ></ div >
< ? php
endif ;
?>
</ body >
</ html >