Merge pull request #5888 from Sanjaybhattwebkul/admin-login
Issue #5887 fixed
This commit is contained in:
commit
cec6deca8f
|
|
@ -63,6 +63,7 @@
|
|||
input.attr("type", "password");
|
||||
}
|
||||
});
|
||||
$(":input[name=email]").focus();
|
||||
});
|
||||
</script>
|
||||
@endpush
|
||||
|
|
@ -83,6 +83,7 @@
|
|||
$('#password').attr("type", "password");
|
||||
}
|
||||
});
|
||||
$(":input[name=email]").focus();
|
||||
});
|
||||
</script>
|
||||
|
||||
|
|
|
|||
|
|
@ -106,6 +106,12 @@
|
|||
|
||||
@push('scripts')
|
||||
|
||||
<script>
|
||||
$(function(){
|
||||
$(":input[name=first_name]").focus();
|
||||
});
|
||||
</script>
|
||||
|
||||
{!! Captcha::renderJS() !!}
|
||||
|
||||
@endpush
|
||||
|
|
@ -112,16 +112,20 @@
|
|||
{!! Captcha::renderJS() !!}
|
||||
|
||||
<script>
|
||||
function myFunction() {
|
||||
var x = document.getElementById("password");
|
||||
if (x.type === "password") {
|
||||
x.type = "text";
|
||||
} else {
|
||||
x.type = "password";
|
||||
}
|
||||
}
|
||||
|
||||
</script>
|
||||
$(function(){
|
||||
$(":input[name=email]").focus();
|
||||
});
|
||||
|
||||
function myFunction() {
|
||||
var x = document.getElementById("password");
|
||||
if (x.type === "password") {
|
||||
x.type = "text";
|
||||
} else {
|
||||
x.type = "password";
|
||||
}
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
@endpush
|
||||
|
||||
|
|
|
|||
|
|
@ -158,6 +158,11 @@
|
|||
@endsection
|
||||
|
||||
@push('scripts')
|
||||
<script>
|
||||
$(function(){
|
||||
$(":input[name=first_name]").focus();
|
||||
});
|
||||
</script>
|
||||
|
||||
{!! Captcha::renderJS() !!}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue