mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-02-27 20:17:58 -05:00
- if user cannot log in, a 403 error is showed (and it is done in controller) - 403 error message has been changed to match with the error - add blank spaces on persona login page
19 lines
459 B
PHTML
19 lines
459 B
PHTML
<div class="post">
|
|
<div class="alert alert-error">
|
|
<h1 class="alert-head"><?php echo $this->code; ?></h1>
|
|
|
|
<p>
|
|
<?php
|
|
switch(Minz_Request::param ('code')) {
|
|
case 403:
|
|
echo Minz_Translate::t ('forbidden_access');
|
|
break;
|
|
case 404:
|
|
default:
|
|
echo Minz_Translate::t ('page_not_found');
|
|
} ?><br />
|
|
<a href="<?php echo _url ('index', 'index'); ?>"><?php echo Minz_Translate::t ('back_to_rss_feeds'); ?></a>
|
|
</p>
|
|
</div>
|
|
</div>
|