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

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>