Skip to content

Commit

Permalink
heelo
Browse files Browse the repository at this point in the history
  • Loading branch information
jitu7989 committed Jul 23, 2022
1 parent c6ec5d2 commit 875c586
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
4 changes: 1 addition & 3 deletions scripts/signin.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
let signinArr = JSON.parse(localStorage.getItem("signupKey")) || [];
document.querySelector("form").addEventListener("submit", myFunction);

console.log(signinArr);

function myFunction() {
event.preventDefault();
let EmailAdd = document.querySelector("#email").value;
Expand All @@ -18,7 +16,7 @@ function myFunction() {

if (flag) {
alert("You Are Successfully Logged In.");
localStorage.setItem("system","online");
localStorage.setItem("system", "online");
window.location.href = "index.html";
} else {
alert("Wrong ID/Password");
Expand Down
10 changes: 10 additions & 0 deletions styles/navbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -207,4 +207,14 @@ nav .nav_wrapper {

#navbar_container_nav>#menu1>nav>.nav_wrapper>.nav-links_nav>li>p>span {
float: right
}

@media all and (min-width:320px) and (max-width:1000px) {
#navbar_container_nav #menu1 {
display: none;
}

#navbar_container_nav #menu2 {
display: none;
}
}

0 comments on commit 875c586

Please sign in to comment.