2017-10-13 13:22:19 +03:00
|
|
|
<?php $this->layout('ShlinkCore::layout/default') ?>
|
|
|
|
|
|
|
|
<?php $this->start('title') ?>
|
2019-04-14 09:57:48 +03:00
|
|
|
<?= $this->translate('Invalid URL') ?>
|
2017-10-13 13:22:19 +03:00
|
|
|
<?php $this->end() ?>
|
|
|
|
|
|
|
|
<?php $this->start('stylesheets') ?>
|
|
|
|
<style>
|
|
|
|
p {margin-bottom: 20px;}
|
|
|
|
body {text-align: center;}
|
|
|
|
</style>
|
|
|
|
<?php $this->end() ?>
|
|
|
|
|
|
|
|
<?php $this->start('main') ?>
|
|
|
|
<h1><?= $this->translate('Oops!') ?></h1>
|
|
|
|
<hr>
|
|
|
|
<p><?= $this->translate('This short URL doesn\'t seem to be valid.') ?></p>
|
|
|
|
<p><?= $this->translate('Make sure you included all the characters, with no extra punctuation.') ?></p>
|
|
|
|
<?php $this->end() ?>
|