blob: e78d973652758b13e6af44519d322923584666bc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<h1>Login</h1>
<?php
$this->loginForm->setAction($this->url());
echo $this->loginForm;
?>
<script>
$(document).ready(function(){
$("#email").focus();
$(document).keydown(function(e) {
if(e.which == 13) {
$(this).blur();
$('#submit').focus().click();
}
});
});
</script>
|