opencore r16990 - sputnik/trunk/sputnik/browser
from
chris
on 2008-05-16 10:41
Author: cpatterson
Date: 2008-05-16 10:41:23 -0400 (Fri, 16 May 2008)
New Revision: 16990
Modified:
sputnik/trunk/sputnik/browser/main_template.pt
Log:
[Closes LS #110] - fix tab ordering on LSN
Modified: sputnik/trunk/sputnik/browser/main_template.pt
===================================================================
--- sputnik/trunk/sputnik/browser/main_template.pt 2008-05-16 14:35:46 UTC (rev 16989)
+++ sputnik/trunk/sputnik/browser/main_template.pt 2008-05-16 14:41:23 UTC (rev 16990)
@@ -115,10 +115,10 @@
# [TODO] consider moving "blank upon focus" functionality away from inline declarations
</tal:comment>
<div>
- <input id="__ac_name" name="__ac_name" type="text" size="10" tabindex="0" value="username" onblur="if(this.value=='') this.value='username';" onfocus="if(this.value=='username') this.value='';" />
- <input id="__ac_password" name="__ac_password" type="text" size="10" tabindex="1" value="password" onblur="if(this.value == '' || this.value == 'password') {this.value='password'; this.type='text';}" onfocus="if(this.value == 'password') {this.value=''; this.type='password';}" />
+ <input id="__ac_name" name="__ac_name" type="text" size="10" tabindex="1" value="username" onblur="if(this.value=='') this.value='username';" onfocus="if(this.value=='username') this.value='';" />
+ <input id="__ac_password" name="__ac_password" type="text" size="10" tabindex="2" value="password" onblur="if(this.value == '' || this.value == 'password') {this.value='password'; this.type='text';}" onfocus="if(this.value == 'password') {this.value=''; this.type='password';}" />
</div>
- <input id="login-submit" class="image" type="image" alt="Login" tal:attributes="href python:'%swp-content/themes/woonerf/img/login.png' % view.get_config('general', 'streetsblog_uri')" />
+ <input id="login-submit" class="image" tabindex="3" type="image" alt="Login" tal:attributes="href python:'%swp-content/themes/woonerf/img/login.png' % view.get_config('general', 'streetsblog_uri')" />
<input id="login" name="login" type="hidden" value="1" />
<input id="came-from" name="came_from" type="hidden" tal:attributes="value request/ACTUAL_URL" />
</fieldset>