shouldn't have included this

This commit is contained in:
Ryan Walberg 2012-11-11 03:54:30 +00:00
parent d2f3925fbb
commit 3247d2ffe7

View file

@ -1,67 +0,0 @@
{*
This program is free software; you can redistribute it and/or modify
t under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Gift Registry - Login</title>
<link href="styles.css" type="text/css" rel="stylesheet" />
</head>
<body onLoad="document.login.username.focus();">
<form name="login" method="post" action="login.php">
<div align="center">
<img src="images/title.gif" border="0" alt="Gift Registry" title="Gift Registry" />
</div>
<div align="center">
<table cellpadding="3" class="partbox">
{if isset($username)}
<caption><font color=\"red\">Bad login.</font></caption>
{/if}
<tr>
<td colspan="2" class="partboxtitle" align="center">Login to the Gift Registry</td>
</tr>
<tr>
<td>Username</td>
<td>
<input name="username" type="text" />
</td>
</tr>
<tr>
<td>Password</td>
<td>
<input name="password" type="password" />
</td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="Login"/>
</td>
</tr>
</table>
</div>
<p>
<div align="center">
<a href="signup.php">Need an account?</a>
</div>
</p>
<p>
<div align="center">
<a href="forgot.php">Forgot your password?</a>
</div>
</p>
</form>
</body>
</html>