Self-hosted, federated location sharing app and server that prioritizes user privacy and security
end-to-end-encryption location-sharing privacy self-hosted federated

fixed signup page

Changed files
+4 -4
app
src
signup-page
+2 -2
app/src/signup-page/signup.html
··· 2 2 <html lang="en"> 3 3 <head> 4 4 <meta charset="UTF-8" /> 5 - <script type="module" src="/src/signup.ts"></script> 6 - <link rel="stylesheet" href="/src/signup.css" /> 5 + <script type="module" src="./signup.ts"></script> 6 + <link rel="stylesheet" href="./signup.css" /> 7 7 </head> 8 8 9 9 <body>
+2 -2
app/src/signup-page/signup.ts
··· 1 1 import Alpine from "alpinejs"; 2 - import { createAccount } from "@utils/api.ts"; 3 - import { Store } from "@utils/store.ts"; 2 + import { createAccount } from "../utils/api.ts"; 3 + import { Store } from "../utils/store.ts"; 4 4 5 5 Alpine.data("signupPageState", () => ({ 6 6 serverAddress: "",