0
0
This repository has been archived on 2020-11-15. You can view files and clone it, but cannot push or open issues or pull requests.
OpenShorte.old/lib/php/forgot.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>