mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2025-10-03 01:39:15 +02:00

Some of the references to "paste" in code or comments got changed as well, but to clarify the intended usage of the terms: - A PrivateBin document can consist of a paste text (key "paste" in the encrypted payload) and one or several attachments and discussion entries. - Internally the root document is called a "Paste" and each discussion entry is called a "Discussion". - When referring to a whole document with one paste and optional discussion(s), we call it just "document". - When talking about a particular JSON payload type in the internal logic, i.e. during storage or transmission, we call them a paste or discussion to distinguish which type we refer to. closes #397
27 lines
815 B
PHP
27 lines
815 B
PHP
<?php declare(strict_types=1);
|
|
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 name="robots" content="noindex" />
|
|
<meta name="google" content="notranslate">
|
|
<title><?php echo I18n::_($NAME); ?></title>
|
|
</head>
|
|
<body>
|
|
<?php
|
|
if (empty($ERROR)) :
|
|
?>
|
|
<p><?php echo I18n::_('Your document is <a id="pasteurl" href="%s">%s</a> <span id="copyhint">(Hit <kbd>Ctrl</kbd>+<kbd>c</kbd> to copy)</span>', $SHORTURL, $SHORTURL); ?></p>
|
|
<?php
|
|
else:
|
|
?>
|
|
<div id="errormessage">
|
|
<p><?php echo I18n::_('Could not create document: %s', $ERROR); ?></p>
|
|
</div>
|
|
<?php
|
|
endif;
|
|
?>
|
|
</body>
|
|
</html>
|