| 
      
      
      From: Benjamin C. <bc...@us...> - 2001-07-10 04:01:57
      
     | 
| Update of /cvsroot/phpbt/phpbt/templates
In directory usw-pr-cvs1:/tmp/cvs-serv20009/templates
Modified Files:
	wrap.html 
Added Files:
	passwordchanged.html passwordform.html 
Log Message:
Starting on the user page - allow for password changes
--- NEW FILE: passwordchanged.html ---
Your password has been changed successfully
<br>
<br>
<a href="index.php">Return to phpBugTracker home</a>
--- NEW FILE: passwordform.html ---
<form action="{me}" method="{post}">
<input type="hidden" name="do" value="changepassword">
	<table border="0" cellpadding="0" cellspacing="0" width="600">
		<tr>
			<td colspan="2" width="600"><b>Change Password</b></td>
		</tr>
		<tr>
			<td colspan="2" width="600">
				<font color="#ff0000">{error}</font>
			</td>
		</tr>
		<tr>
			<td colspan="2" width="600">Please enter your new password twice below</td>
		</tr>
		<tr>
			<td>Password: </td>
			<td><input type="password" name="pass1" value="{pass1}"></td>
		</tr>
		<tr>
			<td>Verify: </td>
			<td><input type="password" name="pass2" value="{pass2}"></td>
		</tr>
		<tr>
			<td colspan="2">
				<input type="reset">
				<input type="submit" value="Submit">
			</td>
		</tr>
	</table>
</form>
Index: wrap.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/wrap.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- wrap.html	2001/07/10 03:15:20	1.4
+++ wrap.html	2001/07/10 04:01:54	1.5
@@ -5,6 +5,7 @@
 	<link rel="StyleSheet" href="global.css" type="text/css">
 </head>
 <body bgcolor="#ffffff" link="#006699" vlink="#006699" alink="#006699">
+<div align="center">
 <table border="0" cellpadding="0" cellspacing="0">
 	<tr>
 		<td width="640" colspan="2"><hr size="1" width="640"></td>
@@ -54,3 +55,4 @@
 		</td>
 	</tr>
 </table>
+</div>
 |