2024-05-02 05:17:01 -06:00
|
|
|
$(document).ready(function () {
|
|
|
|
|
// When #user is clicked
|
|
|
|
|
$("#user-profile-button").click(function () {
|
|
|
|
|
$("#register-screen-container").hide();
|
|
|
|
|
// Toggle the visibility of the login container
|
|
|
|
|
$("#login-pane").toggle();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$("#register-page-login-button").click(function (event) {
|
|
|
|
|
event.preventDefault(); // Prevent the default action of following the link
|
|
|
|
|
|
|
|
|
|
$("#register-screen-container").hide();
|
|
|
|
|
$("#login-pane").show();
|
|
|
|
|
});
|
2024-04-11 01:30:00 -06:00
|
|
|
});
|
2024-04-24 03:50:05 -06:00
|
|
|
|
|
|
|
|
$(document).ready(function () {
|
2024-05-02 05:17:01 -06:00
|
|
|
// Listen for click event on the register button
|
|
|
|
|
$("#register-button").click(function (event) {
|
|
|
|
|
event.preventDefault(); // Prevent the default action of following the link
|
|
|
|
|
|
|
|
|
|
$("#login-pane").hide();
|
|
|
|
|
// Show the register container
|
|
|
|
|
$("#register-screen-container").show();
|
|
|
|
|
});
|
2024-04-24 18:46:31 -06:00
|
|
|
});
|
|
|
|
|
|
2024-05-02 05:17:01 -06:00
|
|
|
$(document).ready(function () {
|
|
|
|
|
// When #user is clicked
|
|
|
|
|
$("#user-profile-button").click(function () {
|
|
|
|
|
// Toggle the visibility of the login container
|
|
|
|
|
$("#account-pane").toggle();
|
|
|
|
|
});
|
|
|
|
|
});
|