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.
16 lines
476 B
16 lines
476 B
$(function() {
|
|
$('#login-form-link').click(function(e) {
|
|
$("#login-form").delay(100).fadeIn(100);
|
|
$("#register-form").fadeOut(100);
|
|
$('#register-form-link').removeClass('active');
|
|
$(this).addClass('active');
|
|
e.preventDefault();
|
|
});
|
|
$('#register-form-link').click(function(e) {
|
|
$("#register-form").delay(100).fadeIn(100);
|
|
$("#login-form").fadeOut(100);
|
|
$('#login-form-link').removeClass('active');
|
|
$(this).addClass('active');
|
|
e.preventDefault();
|
|
});
|
|
});
|