- Rework imports for pages - Ready for final end-to-end test before merge
49 lines
1.4 KiB
PHP
49 lines
1.4 KiB
PHP
<?php declare(strict_types=1);
|
|
|
|
/**
|
|
* User Log On Page
|
|
*
|
|
* Accepts the user's e-mail address (multi-user) and password (multi-user or single-user-with-password) and attempts
|
|
* to log them on to Feed Reader Central
|
|
*/
|
|
|
|
include '../../start.php';
|
|
|
|
use FeedReaderCentral\{Key, Security};
|
|
|
|
Security::verifyUser(redirectIfAnonymous: false);
|
|
|
|
// Users already logged on have no need of this page
|
|
if (key_exists(Key::USER_ID, $_SESSION)) frc_redirect('/');
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
|
Security::logOnUser($_POST['email'] ?? '', $_POST['password'], $_POST['returnTo'] ?? null);
|
|
// If we're still here, something didn't work; preserve the returnTo parameter
|
|
$_GET['returnTo'] = $_POST['returnTo'];
|
|
}
|
|
|
|
$isSingle = SECURITY_MODEL == Security::SINGLE_USER_WITH_PASSWORD;
|
|
|
|
page_head('Log On'); ?>
|
|
<h1>Log On</h1>
|
|
<article>
|
|
<form method=POST action=/user/log-on><?php
|
|
if (($_GET['returnTo'] ?? '') != '') { ?>
|
|
<input type=hidden name=returnTo value="<?=$_GET['returnTo']?>"><?php
|
|
}
|
|
if (!$isSingle) { ?>
|
|
<label>
|
|
E-mail Address
|
|
<input type=email name=email required autofocus>
|
|
</label><?php
|
|
} ?>
|
|
<label>
|
|
Password
|
|
<input type=password name=password required<?=$isSingle ? ' autofocus' : ''?>>
|
|
</label>
|
|
<span class=break></span>
|
|
<button type=submit>Log On</button>
|
|
</form>
|
|
</article><?php
|
|
page_foot();
|