<?php
# ---------------------------------------------------------------------
# truc is a tool for requirement and use case tracking
# Copyright (C) 2006 ASDIS - http://sf.net/projects/truc
#
# (rth) Initial truc version based on rth
# Copyright (C) 2005 George Holbrook - hide@address.com
#
# This program is distributed under the terms and conditions of the GPL
# See the README and LICENSE files for details
#----------------------------------------------------------------------
include_once"./api/include_api.php";
html_window_title();
html_print_body();
html_page_title( lang_get('forgot_password_page') . PAGE_TITLE );
print"<div align=center>";
error_report_check( $_GET );
print"<br>";
print"<form method=post action='login_reset_password_action.php'>";
print lang_get('email_address').": ";
print"<input type=text size=35 name=email>";
print"<input type=submit value='".lang_get("submit_btn")."'>";
print"</form>";
print"</div>";
html_print_footer();
?>