Changeset 1310
- Timestamp:
- 11/29/07 17:14:10 (10 months ago)
- Files:
-
- trunk/wifidog-auth/CHANGELOG (modified) (1 diff)
- trunk/wifidog-auth/wifidog/templates/sites/lost_password.tpl (modified) (2 diffs)
- trunk/wifidog-auth/wifidog/templates/sites/lost_username.tpl (modified) (2 diffs)
- trunk/wifidog-auth/wifidog/templates/sites/resend_validation.tpl (modified) (2 diffs)
- trunk/wifidog-auth/wifidog/templates/sites/signup.tpl (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wifidog-auth/CHANGELOG
r1309 r1310 1 1 # $Id$ 2 2007-11-29 Benoit Grégoire <bock@step.polymtl.ca> 3 * signup.tpl, lost_username.tpl, lost_password.tpl, resend_validation.tpl: Move the error div near the button for coherence with the login page (and for the same reason). In fact it was worse than the login page used to be: the error message during signup could appear completely below the page for a user with a low resolution screeen (or big font), giving the form the apereance of doing absolutely nothing (it stumped even me as I was trying to help a user). 4 2 5 2007-11-23 Benoit Grégoire <bock@step.polymtl.ca> 3 6 * UIUserList.php: Don't force it to be persistent, it prevented users from deleting it. trunk/wifidog-auth/wifidog/templates/sites/lost_password.tpl
r1220 r1310 93 93 <tr> 94 94 <th></th> 95 <td><input class="submit" type="submit" name="form_submit" value="{"Reset my password"|_}" {* onclick="if (validateForm(this.form)) this.form.submit()" *}></td> 95 <td> 96 <div id="form_errormsg" class="errormsg"> 97 {if $error} 98 {$error} 99 {/if} 100 </div> 101 <input class="submit" type="submit" name="form_submit" value="{"Reset my password"|_}" {* onclick="if (validateForm(this.form)) this.form.submit()" *}> 102 </td> 96 103 </tr> 97 104 </table> … … 103 110 </div> 104 111 105 <div id="form_errormsg" class="errormsg">106 {if $error}107 {$error}108 {/if}109 </div>110 112 {* If no one steps-in to maintain this, it will be removed benoitg 2006-11-26 111 113 <script type="text/javascript"> trunk/wifidog-auth/wifidog/templates/sites/lost_username.tpl
r1220 r1310 83 83 {"Your email address"|_}: 84 84 <input type="text" name="email" value="{$email}" size="20" id="form_email" {*onkeypress="return focusNext(this.form, 'form_submit', event)"*}> 85 <div id="form_errormsg" class="errormsg"> 86 {if $error} 87 {$error} 88 {/if} 89 </div> 85 90 <input class="submit" type="submit" name="form_submit" value="{"Retrieve"|_}" {*onclick="if (validateForm(this.form)) this.form.submit()"*}> 86 91 </form> … … 90 95 {"Please enter your email address to recover your username"|_}. 91 96 </div> 92 93 <div id="form_errormsg" class="errormsg">94 {if $error}95 {$error}96 {/if}97 </div>98 97 99 98 {* If no one steps-in to maintain this, it will be removed benoitg 2006-11-26 trunk/wifidog-auth/wifidog/templates/sites/resend_validation.tpl
r1220 r1310 89 89 <tr> 90 90 <th></th> 91 <td><input class="submit" type="submit" name="form_submit" value="{"Re-send"|_}"{* onclick="if (validateForm(this.form)) this.form.submit()" *}></td> 91 <td> 92 <div id="form_errormsg" class="errormsg"> 93 {if $error} 94 {$error} 95 {/if} 96 </div> 97 <input class="submit" type="submit" name="form_submit" value="{"Re-send"|_}"{* onclick="if (validateForm(this.form)) this.form.submit()" *}> 98 </td> 92 99 </tr> 93 100 </table> … … 98 105 {"Please enter your username and the validation email will be resent to your email address"|_}. 99 106 </div> 100 101 <div id="form_errormsg" class="errormsg">102 {if $error}103 {$error}104 {/if}105 </div>106 107 107 108 {* If no one steps-in to maintain this, it will be removed benoitg 2006-11-26 trunk/wifidog-auth/wifidog/templates/sites/signup.tpl
r1220 r1310 101 101 <tr> 102 102 <th></th> 103 <td><input class="submit" type="submit" name="form_submit" value="{"Sign-up"|_}" onclick="if (validateForm(this.form)) this.form.submit()"></td> 103 <td> 104 <div id="form_errormsg" class="errormsg"> 105 {if $error != null} 106 {$error} 107 {/if} 108 </div> 109 <input class="submit" type="submit" name="form_submit" value="{"Sign-up"|_}" onclick="if (validateForm(this.form)) this.form.submit()"> 110 </td> 104 111 </tr> 105 112 </table> … … 132 139 </p> 133 140 </fieldset> 134 135 <div id="form_errormsg" class="errormsg">136 {if $error != null}137 {$error}138 {/if}139 </div>140 141 141 142 <script type="text/javascript">
