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