This repository has been archived on 2025-06-05. You can view files and clone it, but cannot push or open issues or pull requests.
SSLR/web/profile.js
2025-02-15 21:04:47 +08:00

21 lines
416 B
JavaScript

const signInDialog = document.getElementById("signInDialog");
const signUpDialog = document.getElementById("signUpDialog");
document.addEventListener("DOMContentLoaded", (event) => {});
function ShowSignIn() {
// signUpDialog.close();
signInDialog.showModal();
console.log("sign in showed");
}
function ShowSignUp() {
signInDialog.close()
signUpDialog.showModal()
console.log("sign up showed")
}