mirror of
https://github.com/minoplhy/chhoto-url.git
synced 2024-11-22 17:26:45 +00:00
Hide password when entering
This commit is contained in:
parent
d22d88b985
commit
abe8238713
@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<div class="container">
|
<div class="container" id="container">
|
||||||
<form class="pure-form pure-form-aligned" name="new-url-form">
|
<form class="pure-form pure-form-aligned" name="new-url-form">
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend id="logo"><img src="assets/favicon-32.png" width="26px" alt="logo"> Simply Shorten</legend>
|
<legend id="logo"><img src="assets/favicon-32.png" width="26px" alt="logo"> Simply Shorten</legend>
|
||||||
@ -65,6 +65,15 @@
|
|||||||
<a href="https://github.com/SinTan1729/simply-shorten" target="_blank" rel="noopener noreferrer">Source Code</a>
|
<a href="https://github.com/SinTan1729/simply-shorten" target="_blank" rel="noopener noreferrer">Source Code</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<dialog id="login-dialog">
|
||||||
|
<form class="pure-form" name="login-form">
|
||||||
|
<p>Please enter password to access this website</p>
|
||||||
|
<input type="password" id="password" />
|
||||||
|
<button class="pure-button pure-button-primary" value="default">Submit</button>
|
||||||
|
<p id="wrong-pass"> </p>
|
||||||
|
</form>
|
||||||
|
</dialog>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
@ -9,33 +9,26 @@ const getSiteUrl = async () => await fetch("/api/siteurl")
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
const auth_fetch = async (link) => {
|
|
||||||
let reply = await fetch(link).then(res => res.text());
|
|
||||||
if (reply == "logged_out") {
|
|
||||||
pass = prompt("Please enter passkey to access this website");
|
|
||||||
await fetch("/api/login", {
|
|
||||||
method: "POST",
|
|
||||||
body: pass
|
|
||||||
});
|
|
||||||
return auth_fetch(link);
|
|
||||||
} else {
|
|
||||||
return reply;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const refreshData = async () => {
|
const refreshData = async () => {
|
||||||
let data = await auth_fetch("/api/all");
|
let reply = await fetch("/api/all").then(res => res.text());
|
||||||
data = data
|
if (reply == "logged_out") {
|
||||||
.split("\n")
|
console.log("logged_out");
|
||||||
.filter(line => line !== "")
|
document.getElementById("container").style.filter = "blur(2px)"
|
||||||
.map(line => line.split(","))
|
document.getElementById("login-dialog").showModal();
|
||||||
.map(arr => ({
|
document.getElementById("password").focus();
|
||||||
short: arr[0],
|
} else {
|
||||||
long: arr[1],
|
data = reply
|
||||||
hits: arr[2]
|
.split("\n")
|
||||||
}));
|
.filter(line => line !== "")
|
||||||
|
.map(line => line.split(","))
|
||||||
|
.map(arr => ({
|
||||||
|
short: arr[0],
|
||||||
|
long: arr[1],
|
||||||
|
hits: arr[2]
|
||||||
|
}));
|
||||||
|
|
||||||
displayData(data);
|
displayData(data);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const displayData = async (data) => {
|
const displayData = async (data) => {
|
||||||
@ -168,14 +161,39 @@ const submitForm = () => {
|
|||||||
refreshData();
|
refreshData();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const submitLogin = () => {
|
||||||
|
const password = document.getElementById("password");
|
||||||
|
fetch("/api/login", {
|
||||||
|
method: "POST",
|
||||||
|
body: password.value
|
||||||
|
}).then(res => {
|
||||||
|
if (res.ok) {
|
||||||
|
document.getElementById("container").style.filter = "blur(0px)"
|
||||||
|
document.getElementById("login-dialog").remove();
|
||||||
|
refreshData();
|
||||||
|
} else {
|
||||||
|
const wrongPassBox = document.getElementById("wrong-pass");
|
||||||
|
wrongPassBox.innerHTML = "Wrong password!";
|
||||||
|
wrongPassBox.setAttribute("style", "color:red");
|
||||||
|
password.focus();
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
(async () => {
|
(async () => {
|
||||||
await refreshData();
|
await refreshData();
|
||||||
|
|
||||||
const form = document.forms.namedItem("new-url-form");
|
const form = document.forms.namedItem("new-url-form");
|
||||||
form.onsubmit = e => {
|
form.onsubmit = e => {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
submitForm();
|
submitForm();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const login_form = document.forms.namedItem("login-form");
|
||||||
|
login_form.onsubmit = e => {
|
||||||
|
e.preventDefault();
|
||||||
|
submitLogin();
|
||||||
|
}
|
||||||
})();
|
})();
|
||||||
|
Loading…
Reference in New Issue
Block a user