PHP Classes

File: secure_page1.php

Recommend this page to a friend!
  Classes of Pedram Nimreezi   Mojavi examples   secure_page1.php   Download  
File: secure_page1.php
Role: Example script
Content type: text/plain
Description: SecurePage1 Template
Class: Mojavi examples
Examples Mojavi is an MVC framework
Author: By
Last change:
Date: 21 years ago
Size: 404 bytes
 

Contents

Class file image Download
<?php require_once('_header.php'); ?>

<div class="title">
    Secure Page #1
</div>
<br/>
<div class="text">
    You've made it to secure page #1.
    <br/><br/>
    <a href="<?= $template['global_secure_page'] ?>">Click here</a> to go back to the globally secure page.
    <br/><br/>
    <a href="<?= $template['logout_page'] ?>">Click here</a> to logout.
</div>

<?php require_once('_footer.php'); ?>