|
From: Benjamin C. <bc...@us...> - 2001-08-28 04:15:18
|
Update of /cvsroot/phpbt/phpbt/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv8930/templates/default
Modified Files:
newaccount.html
Log Message:
Handle the new login field for users and insert the user to group relationship in the database. user_group needs to change to include created and last_modified fields
Index: newaccount.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/newaccount.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- newaccount.html 2001/08/01 13:55:56 1.1
+++ newaccount.html 2001/08/28 04:15:15 1.2
@@ -1,11 +1,20 @@
<h2>Create a new account</h2>
<form action="{me}" method="post">
+<input type="hidden" name="createaccount" value="1">
<table border="0">
<tr>
<td align="center" colspan="2">
<font color="#ff0000">{error}</font>
</td>
</tr>
+ <!-- BEGIN loginentryarea -->
+ <tr>
+ <td align="right">Login: </td>
+ <td>
+ <input type="text" name="login" value="{login}">
+ </td>
+ </tr>
+ <!-- END loginentryarea -->
<tr>
<td align="right">Email: </td>
<td><input type="text" name="email" value="{email}"></td>
|