12 lines
549 B
PHP
12 lines
549 B
PHP
<?php include 'templates/header.php'; ?>
|
|
|
|
<div class="text-center">
|
|
<h1>Welcome to the Assessment Management System</h1>
|
|
<p class="lead">Your solution for streamlined planning, assessment, and reporting.</p>
|
|
<hr class="my-4">
|
|
<p>To get started, you can register for a new account or log in if you already have one.</p>
|
|
<a class="btn btn-primary btn-lg" href="register.php" role="button">Register</a>
|
|
<a class="btn btn-secondary btn-lg" href="login.php" role="button">Login</a>
|
|
</div>
|
|
|
|
<?php include 'templates/footer.php'; ?>
|