23 lines
658 B
PHP
23 lines
658 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<?php include $_SERVER['DOCUMENT_ROOT']."/snippets/head.php" ?>
|
|
<body>
|
|
<?php include $_SERVER['DOCUMENT_ROOT']."/snippets/header.php" ?>
|
|
|
|
<div class="container">
|
|
<div class="content flex-vertical">
|
|
<div class="section-one">
|
|
<h1>Registration</h1>
|
|
</div>
|
|
<div class="section-two flex-vertical align-left">
|
|
<form> <!-- TODO Make these stack vertically -->
|
|
<label>Registration Code</label>
|
|
<label>Name</label>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php include $_SERVER['DOCUMENT_ROOT']."/snippets/footer.php" ?>
|
|
</body>
|
|
</html>
|