27 lines
641 B
PHP
27 lines
641 B
PHP
<?php
|
|
$database = new Database ( $GLOBALS [ 'config' ] [ 'db' ] );
|
|
$database->connect ( );
|
|
if ( isset ( $_POST [ 'forgot_email' ] ) ) {
|
|
//...
|
|
}
|
|
elseif ( isset ( $_POST [ 'forgot_username' ] ) ) {
|
|
//...
|
|
}
|
|
?>
|
|
<!DOCTYPE HTML>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link href="<?=$GLOBALS['config']['installation_path']?>/favicon.ico" rel="icon" type="image/x-icon">
|
|
<title>Password Reset | <?=$GLOBALS['config']['website_name']?></title>
|
|
</head>
|
|
|
|
<body>
|
|
<center>
|
|
<p>Reset your password here - Placeholder</p>
|
|
</center>
|
|
</body>
|
|
|
|
</html>
|