diff options
author | plegall <plg@piwigo.org> | 2005-08-27 00:24:31 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2005-08-27 00:24:31 +0000 |
commit | a891960d5a9ac504a173520f4604e6740c58493b (patch) | |
tree | 88f15e6cedf4fede92988cc1b0589a8e659b9725 /template/cclear/register.tpl | |
parent | 1abfbf5eaec88e63cea97bde6d1ecceae8e51520 (diff) |
(not in ChangeLog)
- adds PHPWG_ROOT_PATH to form action in identification.php
- adds link to home on identification.php
- avoid using language_select and template_select in profile.php (maybe
these functions becom obsolete)
- [template cclear] solution #3 from
http://forum.phpwebgallery.net/viewtopic.php?pid=21443#p21443 : adds the
fix on min-height.
- [template cclear] new FORM class : properties. Used in identification,
profile, register.
- [template cclear] deletion of now useless DIV.formbox
- [template cclear] footer update : link to phpwebgallery website and not
pierrick email.
git-svn-id: http://piwigo.org/svn/trunk@854 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/cclear/register.tpl')
-rw-r--r-- | template/cclear/register.tpl | 32 |
1 files changed, 24 insertions, 8 deletions
diff --git a/template/cclear/register.tpl b/template/cclear/register.tpl index c696bfe8b..3b39fcbf2 100644 --- a/template/cclear/register.tpl +++ b/template/cclear/register.tpl @@ -9,9 +9,6 @@ <h2>{lang:Registration}</h2> </div> -<!-- TO DO --> -<!-- It's easy, just lok at identification.tpl ;-) --> - <!-- BEGIN errors --> <div class="errors"> <ul> @@ -22,18 +19,37 @@ </div> <!-- END errors --> -<form method="post" action="{F_ACTION}" class="filter"> +<form method="post" action="{F_ACTION}" class="properties"> <fieldset> <legend>{lang:Enter your personnal informations}</legend> - <label>* {lang:Username}<input type="text" name="login" value="{F_LOGIN}"></label> - <label>* {lang:Password}<input type="password" name="password"></label> - <label>* {lang:Confirm Password}<input type="password" name="password_conf"></label> - <label>{lang:Mail address}<input type="text" name="mail_address" value="{F_EMAIL}"></label> + <ul> + <li> + <label for="login" class="mandatory">* {lang:Username}</label> + <input type="text" name="login" id="login" value="{F_LOGIN}" onfocus="this.className='focus';" onblur="this.className='nofocus';"> + </li> + + <li> + <label for="password" class="mandatory">* {lang:Password}</label> + <input type="password" name="password" id="password" onfocus="this.className='focus';" onblur="this.className='nofocus';"> + </li> + + <li> + <label for="password_conf" class="mandatory">* {lang:Confirm Password}</label> + <input type="password" name="password_conf" id="password_conf" onfocus="this.className='focus';" onblur="this.className='nofocus';"> + </li> + + <li> + <label for="mail_address">{lang:Mail address}</label> + <input type="text" name="mail_address" id="mail_address" value="{F_EMAIL}" onfocus="this.className='focus';" onblur="this.className='nofocus';"> + </li> + </ul> + </fieldset> <p class="bottomButtons"> <input type="submit" name="submit" value="{lang:Register}"> + <input type="reset" value="{lang:Reset}"> </p> </form> |