Register gemacht. Kleine Änderung

Kleine Änderung:
- In Login:
    - Logo RICHTIG gefärbt
    - Remember me (keine Funktion) hinzufegüt
    - Weiterleitung auf register
Register:
Registrierung seite erstellt und registrieren möglich gemacht + API anbindung
This commit is contained in:
danielvici123
2024-12-22 20:08:47 +01:00
parent 1d8665d6ce
commit 8b4b99a015
6 changed files with 128 additions and 14 deletions

View File

@@ -8,6 +8,7 @@ import Login from "../components/Login.vue";
import wip from "../components/wip.vue";
import settings from "../components/settings.vue";
import nottifications from "../components/notifications.vue";
import register from "../components/register.vue";
// The routing does not happen automatically
// Each route has to be defined here, or it wont work.
const routes = [
@@ -35,7 +36,13 @@ const routes = [
path: "/notifications",
name: "Notifications",
component: nottifications,
},
{
path: "/register",
name: "Register",
component: register,
}
]
const router = createRouter({