khanat-opennel-code/code/web/public_php/setup/auth.php
2014-09-05 09:57:06 +02:00

52 lines
1.1 KiB
PHP

<?php
error_reporting(E_ALL);
ini_set('display_errors', 'on');
class SystemExit extends Exception {}
try {
$pageTitle = "Authenticate";
include('header.php');
?>
<div style="margin-left: auto; margin-right: auto; max-width: 512px;">
<?php /*var_dump($_POST);*/ if ($_POST) { ?>
<?php
// TODO
$_SESSION['nelSetupAuthenticated'] = 1;
printalert("success", "You are now authenticated");
?>
<p>
<a class="btn btn-primary" href="index.php">Continue</a>
</p>
<?php } else { ?>
<form class="form" role="form" method="POST" action="" enctype="application/x-www-form-urlencoded">
<div class="input-group">
<label for="nelSetupPassword" class="sr-only">NeL Setup Password</label>
<input type="password" class="form-control" id="nelSetupPassword" name="nelSetupPassword" placeholder="Password">
<span class="input-group-btn">
<input name="submit" type="submit" value="Authenticate" class="btn btn-primary">
</span>
</div>
</form>
<?php } ?>
</div>
<?php
include('footer.php');
}
catch (SystemExit $e) { /* do nothing */ }
?>