feat: Removed hq signup page
Server Deploy / deploy (push) Successful in 1m44s

This commit is contained in:
2026-07-29 10:42:51 +01:00
parent 7b8fa4a8a0
commit ed4c39650c
7 changed files with 22 additions and 103 deletions
-2
View File
@@ -296,8 +296,6 @@ export const api = {
staffLogin: (email: string, password: string) =>
post<Session>("/auth/staff/login", { email, password }),
logout: () => post<{ ok: boolean }>("/auth/logout"),
signup: (payload: { name: string; email: string; password: string; website?: string }) =>
post<{ pending: boolean }>("/auth/signup", payload),
verify: (token: string) =>
req<{ verified: boolean; needs_password?: boolean }>(
`/auth/verify?token=${encodeURIComponent(token)}`,