2021-05-30 13:56:13 +00:00
2021-05-09 16:55:34 +00:00
< div id = "content" class = "container" >
2021-05-30 13:56:13 +00:00
< h1 class = "my-4" > PIN Pairing< / h1 >
< form action = "" class = "form d-flex flex-column align-items-center" id = "form" >
< div class = "card flex-column d-flex p-4 mb-4" >
< input type = "number" placeholder = "PIN" id = "pin-input" class = "form-control my-4" >
< button class = "btn btn-primary" > Send< / button >
< / div >
< div class = "alert alert-warning" >
< b > Warning!< / b > Make sure you have access to the client you are pairing with.< br >
This software can give total control to your computer, so be careful!
< / div >
2021-05-09 16:55:34 +00:00
< div id = "status" > < / div >
< / form >
< / div >
< script >
document.querySelector("#form").addEventListener("submit", (e) => {
e.preventDefault();
let pin = document.querySelector("#pin-input").value;
document.querySelector("#status").innerHTML = "";
2021-05-30 14:42:40 +00:00
let b = JSON.stringify({pin: pin});
fetch("/api/pin",{method: "POST",body: b}).then((response) => response.json()).then((response)=>{
if(response.status){
2021-05-09 16:55:34 +00:00
document.querySelector("#status").innerHTML = `< div class = "alert alert-success" role = "alert" > Success! Please check Moonlight to continue< / div > `;
2021-05-30 14:42:40 +00:00
} else {
2021-05-09 16:55:34 +00:00
document.querySelector("#status").innerHTML = `< div class = "alert alert-danger" role = "alert" > PIN does not match, please check if it's typed correctly< / div > `;
}
})
})
< / script >