id/views/signup.php

35 lines
1.1 KiB
PHP
Raw Normal View History

2024-06-28 22:50:21 +01:00
<!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';
}
?>
2024-07-01 22:15:51 +01:00
<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>-->
2024-06-28 22:50:21 +01:00
</main>
<?php include 'partials/footer.php' ?>
</body>
</html>