2020-06-09 02:01:41 +02:00
|
|
|
<?php require ROOT . '/views/templates/main_header.php'; ?>
|
|
|
|
<?php require ROOT . '/views/templates/header.php'; ?>
|
|
|
|
<h2>Login</h2>
|
|
|
|
<div class="box">
|
2020-06-25 22:35:04 +02:00
|
|
|
<form id="loginForm" action="/login" method="post" data-redirect-on-success="/">
|
2020-06-18 16:15:03 +02:00
|
|
|
<input class="big fullWidth" type="email" name="email" placeholder="Email address" required autofocus>
|
|
|
|
<input class="big fullWidth marginTop" type="password" name="password" placeholder="Password" required minlength="6">
|
2020-06-14 17:16:08 +02:00
|
|
|
<p id="loginFormError" class="formError justify marginTop"></p>
|
2020-06-09 02:01:41 +02:00
|
|
|
<div class="right marginTop">
|
|
|
|
<button type="submit">Login</button>
|
|
|
|
</div>
|
2020-06-21 01:33:33 +02:00
|
|
|
<hr>
|
|
|
|
<div class="center">
|
|
|
|
<a class="button yellow" href="/login/google" title="Login with Google">Login with Google</a>
|
|
|
|
</div>
|
2020-06-09 02:01:41 +02:00
|
|
|
</form>
|
|
|
|
</div>
|
2020-06-21 22:20:30 +02:00
|
|
|
<?php require ROOT . '/views/templates/footer.php'; ?>
|
2020-06-09 02:01:41 +02:00
|
|
|
<?php require ROOT . '/views/templates/main_footer.php'; ?>
|