refactor shortenviayourls.php for our MVC framework

This commit is contained in:
El RIDO
2022-10-23 08:10:56 +02:00
parent 304ae76a04
commit 0dc9ab7576
5 changed files with 177 additions and 87 deletions

25
tpl/yourlsproxy.php Normal file
View File

@@ -0,0 +1,25 @@
<?php
use PrivateBin\I18n;
?><!DOCTYPE html>
<html lang="<?php echo I18n::_('en'); ?>">
<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 paste is <a id="pasteurl" href="%s">%s</a> <span id="copyhint">(Hit [Ctrl]+[c] to copy)</span>', $SHORTURL, $SHORTURL); ?></p>
<?php
else:
?>
<p><?php echo I18n::_('Could not create paste: %s', $ERROR); ?></p>
<?php
endif;
?>
</body>
</html>