123456789101112131415161718192021222324 |
- <?php decorate_with(dirname(__FILE__).'/defaultLayout.php') ?>
- <div class="sfTMessageContainer sfTLock">
- <?php echo image_tag('/sf/sf_default/images/icons/lock48.png', array('alt' => 'credentials required', 'class' => 'sfTMessageIcon', 'size' => '48x48')) ?>
- <div class="sfTMessageWrap">
- <h1>Credentials Required</h1>
- <h5>This page is in a restricted area.</h5>
- </div>
- </div>
- <dl class="sfTMessageInfo">
- <dt>You do not have the proper credentials to access this page</dt>
- <dd>Even though you are already logged in, this page requires special credentials that you currently don't have. </dd>
- <dt>How to access this page</dt>
- <dd>You must ask a site administrator to grant you some special credentials.</dd>
- <dt>What's next</dt>
- <dd>
- <ul class="sfTIconList">
- <li class="sfTLinkMessage"><a href="javascript:history.go(-1)">Back to previous page</a></li>
- </ul>
- </dd>
- </dl>
|