improved registration page and added account page

This commit is contained in:
2026-01-03 14:22:21 +01:00
parent d96cc39a65
commit f3a2c98643
11 changed files with 166 additions and 60 deletions

View File

@@ -1,10 +1,13 @@
export interface User {
uuid: string
username: string
email: string
}
export interface LoginResponse {
uuid: string
username: string
email: string
token: string
}