id/landing.php

14 lines
674 B
PHP
Raw Normal View History

2023-10-31 20:21:33 +00:00
<div class="hero">
<div class="hero-text">
2024-02-17 12:04:47 +00:00
<img src="/assets/bcid.svg" alt="ByeCorps ID Logo" class="logo">
2023-10-31 20:21:33 +00:00
<h1><span class="bc-1">Bye</span><span class="bc-2">Corps</span><span class="bc-3"> ID</span></h1>
<p>Log into ByeCorps and beyond with a single ID.</p>
<!-- <p><input type="email" name="loginEmail" id="loginEmail" placeholder="Email" /></p> -->
2023-11-06 16:38:18 +00:00
<?php
if ( $_SESSION['auth']) { echo "<a href='/account' class='button primary'>Manage account</a>"; }
else { echo "<a href='/signin' class='button primary'>Sign in</a><a href='/signup' class='button'>Create an account</a>"; }
?>
2023-10-31 18:43:21 +00:00
</div>
2023-10-31 20:21:33 +00:00
</div>