Fix url for registration requests

This commit is contained in:
Fred Boniface 2023-04-05 21:10:32 +01:00
parent c7f34c3621
commit 8e079512cc
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ async function isRegistered() { // Check if a device is registered, returns BOOL
async function register() { // Registers a device by sending POST request to API Server
if (! await isRegistered()) {
showLoading()
let url = `${window.location.origin}/api/v1/auth/request`;
let url = `${window.location.origin}/api/v1/register/request`;
let email = document.getElementById("eml").textContent
let res = await fetch(url, {
method: "POST",