forked from hzdg/cas-maestro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cas_error.php
29 lines (23 loc) · 811 Bytes
/
cas_error.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
/**
* @package WordPress
* @subpackage Default_Theme
*/
get_header(); ?>
<!-- _Content_Container_ -->
<div id="primary" class="site-content">
<div id="content" role="main">
<header class="entry-header">
<h1 class="entry-title">
<?php echo __("Ooops, there was an error.",'CAS_Maestro')?>
</h1>
</header>
<div class="entry-content">
<?php echo sprintf(__("The username %s isn't allowed to register in this website. If you think this is a mistake, please contact the <a href=\"mailto:%s\">website administrator</a>."),$username,get_option('admin_email'));?>
<p><a href="/wp-login.php?action=logout">Log out</a> of CAS.</p>
</div>
</article>
</div><!-- #content -->
</div><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>