diff options
author | chrisaga <chrisaga@piwigo.org> | 2005-08-18 07:04:05 +0000 |
---|---|---|
committer | chrisaga <chrisaga@piwigo.org> | 2005-08-18 07:04:05 +0000 |
commit | 2bbc7ba8bea747db08a8adac9e80e8a2aa7cbf2d (patch) | |
tree | 825df1cd8fc4c9cbf5eeb01c36e6434cbcdc9c4f /template/cclear/register.tpl | |
parent | af3802982b31b13e6f94015bba484233c3b1a9e1 (diff) |
Let's begin the new customizable clear template :-)
git-svn-id: http://piwigo.org/svn/trunk@820 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/cclear/register.tpl')
-rw-r--r-- | template/cclear/register.tpl | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/template/cclear/register.tpl b/template/cclear/register.tpl new file mode 100644 index 000000000..8bae0bc16 --- /dev/null +++ b/template/cclear/register.tpl @@ -0,0 +1,59 @@ +<h2>{L_TITLE}</h2> +<!-- TO DO --> +<!-- It's easy, just lok at identification.tpl ;-) --> + +<form method="post" action="{F_ACTION}"> + <table style="width:60%;" align="center"> + <!-- BEGIN errors --> + <tr> + <td colspan="2"> + <div class="errors"> + <ul> + <!-- BEGIN error --> + <li>{errors.error.ERROR}</li> + <!-- END error --> + </ul> + </div> + </td> + </tr> + <!-- END errors --> + <tr> + <td width="60%">{L_USERNAME}</td> + <td width="40%"> + <input type="text" name="login" value="{F_LOGIN}" /> + </td> + </tr> + <tr> + <td >{L_PASSWORD}</td> + <td > + <input type="password" name="password" /> + </td> + </tr> + <tr> + <td >{L_CONFIRM_PASSWORD}</td> + <td > + <input type="password" name="password_conf" /> + </td> + </tr> + <tr> + <td >{L_EMAIL}</td> + <td > + <input type="text" name="mail_address" value="{F_EMAIL}" /> + </td> + </tr> + <tr> + <td colspan="2"> </td> + </tr> + <tr> + <tr> + <td colspan="2" align="center"> + <input type="submit" name="submit" value="{L_SUBMIT}" class="bouton" /> + </td> + </tr> + <tr> + <td colspan="2" align="center"> + <a href="./category.php">[ {L_GUEST} ]</a> + </td> + </tr> + </table> +</form> |