Changeset - eef9e273347a
[Not reviewed]
beta
0 3 0
Marcin Kuzminski - 15 years ago 2011-04-03 12:43:29
marcin@python-works.com
added focus to login register password reminder forms
3 files changed with 15 insertions and 0 deletions:
0 comments (0 inline, 0 general)
rhodecode/templates/login.html
Show inline comments
 
@@ -67,6 +67,11 @@
 
            <!-- end links -->
 
        </div>
 
        ${h.end_form()}
 
        <script type="text/javascript">
 
        YUE.onDOMReady(function(){
 
        	YUD.get('username').focus();
 
        })
 
        </script>
 
    </div>
 
    <!-- end login -->
 
</div>
 
\ No newline at end of file
rhodecode/templates/password_reset.html
Show inline comments
 
@@ -34,6 +34,11 @@
 
	    	</div>
 
	    </div>
 
	    ${h.end_form()}
 
        <script type="text/javascript">
 
        YUE.onDOMReady(function(){
 
            YUD.get('email').focus();
 
        })
 
        </script>	    
 
	</div>    
 
   </div>
 

	
rhodecode/templates/register.html
Show inline comments
 
@@ -82,6 +82,11 @@
 
	    	</div>
 
	    </div>
 
	    ${h.end_form()}
 
        <script type="text/javascript">
 
        YUE.onDOMReady(function(){
 
            YUD.get('username').focus();
 
        })
 
        </script>	    
 
	</div>    
 
 </div>
 

	
0 comments (0 inline, 0 general)