Created
January 7, 2016 01:11
-
-
Save justinribeiro/feb7e5d46c279c426627 to your computer and use it in GitHub Desktop.
"A fractal of kiosk design" - https://www.stickmanventures.com/blog/2014/02/26/fractal-kiosk-design/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
session_start (); | |
if (isset ( $_SESSION ['sess_user_id'] ) && isset ( $_SESSION ['sess_username'] )) { | |
header ( "Location: /home" ); | |
exit (); | |
} | |
?> | |
... Begin HTML ... | |
<?php include $_SERVER['DOCUMENT_ROOT'] . '/../includes/templates/top_reqs.php'; ?> | |
... Begin toplevel div ... | |
<?php include $_SERVER['DOCUMENT_ROOT'] . '/../includes/templates/header.php'; ?> | |
... Construct the form ... | |
... End the toplevel div ... | |
<?php include $_SERVER['DOCUMENT_ROOT'] . '/../includes/templates/footer.php'; ?> | |
... End displayed content ... | |
<?php include $_SERVER['DOCUMENT_ROOT'] . '/../includes/templates/bottom_reqs.php'; ?> | |
<script type="text/javascript">$(document).ready(function() {KIOSK.base.initLogin();});</script> | |
... End HTML ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment