mirror of https://github.com/byecorps/id.git
35 lines
1.1 KiB
PHP
35 lines
1.1 KiB
PHP
|
|
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<?php include 'partials/head.php' ?>
|
|
</head>
|
|
<body>
|
|
<?php include 'partials/header.php' ?>
|
|
|
|
<main><?php
|
|
|
|
if ($_SESSION['auth']) {
|
|
$error_body = 'You\'re already logged in';
|
|
include 'partials/error.php';
|
|
}
|
|
|
|
?>
|
|
<h1><?= get_string('page.signup'); ?></h1>
|
|
<p>Sign ups are disabled.</p>
|
|
<!-- <form method="post">-->
|
|
<!-- <p><label for="email">--><?php //= get_string("auth.email") ?><!--</label>-->
|
|
<!-- <input type="email" name="email" id="email" /></p>-->
|
|
<!-- <p><label for="password">--><?php //= get_string("auth.password") ?><!--</label>-->
|
|
<!-- <input type="password" name="password" id="password" /></p>-->
|
|
<!-- <p><label for="repeat_password">--><?php //= get_string("auth.confirmPassword") ?><!--</label>-->
|
|
<!-- <input type="password" name="repeat_password" id="repeat_password" /></p>-->
|
|
<!---->
|
|
<!-- <button type="submit">Submit</button>-->
|
|
<!-- </form>-->
|
|
</main>
|
|
|
|
<?php include 'partials/footer.php' ?>
|
|
</body>
|
|
</html>
|