Jakweb.ch stuff
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
541 B

1 year ago
<script>
$(document).ready(function() {
$(".forgotP").hide();
// Switch buttons from "Log In | Register" to "Close Panel" on click
$(".lost-pwd").click(function(e) {
e.preventDefault();
$(".loginF").slideToggle();
$(".forgotP").slideToggle();
});
<?php if (isset($errorfp)) { ?>
$(".loginF").hide();
$(".forgotP").show();
$(".forgotP").addClass("shake");
<?php } if (isset($ErrLogin)) { ?>
$(".loginF").addClass("shake");
<?php } ?>
});
</script>