lc-core/client/script.js
Rahul Rudragoudar c45c9f0b99
Add basic webpage template
Signed-off-by: Rahul Rudragoudar <rr83019@gmail.com>
2019-06-03 12:59:02 +05:30

10 lines
342 B
JavaScript

document.getElementById("reg-btn").addEventListener("click", function(){
var email = document.getElementById("email").value;
var url = window.location.origin+"/v1/token?email="+email
fetch(url)
.then(res => res.json())
.then((data) => {
document.getElementById("token").innerHTML = "SECRET "+data.token;
})
})