feat: Rename to Toju and add translation
Some checks failed
Deploy Web Apps / deploy (push) Successful in 5m52s
Build Android APK / build-android-apk (push) Failing after 23m15s
Queue Release Build / prepare (push) Successful in 1m42s
Queue Release Build / build-linux (push) Failing after 9m33s
Queue Release Build / build-windows (push) Successful in 26m5s
Queue Release Build / finalize (push) Has been skipped

This commit is contained in:
2026-06-05 17:13:03 +02:00
parent 8ecfc9a1fe
commit ee293d7daf
301 changed files with 8247 additions and 2218 deletions

View File

@@ -5,7 +5,7 @@
name="lucideLogIn"
class="w-5 h-5 text-primary"
/>
<h1 class="text-lg font-semibold text-foreground">Login</h1>
<h1 class="text-lg font-semibold text-foreground">{{ 'auth.login.title' | translate }}</h1>
</div>
<div class="space-y-3">
@@ -13,7 +13,7 @@
<label
for="login-username"
class="block text-xs text-muted-foreground mb-1"
>Username</label
>{{ 'auth.login.username' | translate }}</label
>
<input
[(ngModel)]="username"
@@ -26,7 +26,7 @@
<label
for="login-password"
class="block text-xs text-muted-foreground mb-1"
>Password</label
>{{ 'auth.login.password' | translate }}</label
>
<input
[(ngModel)]="password"
@@ -39,7 +39,7 @@
<label
for="login-server"
class="block text-xs text-muted-foreground mb-1"
>Server App</label
>{{ 'auth.login.serverApp' | translate }}</label
>
<select
[(ngModel)]="serverId"
@@ -59,16 +59,16 @@
type="button"
class="w-full px-3 py-2 rounded bg-primary text-primary-foreground hover:bg-primary/90"
>
Login
{{ 'auth.login.submit' | translate }}
</button>
<div class="text-xs text-muted-foreground text-center mt-2">
No account?
{{ 'auth.login.noAccount' | translate }}
<button
type="button"
(click)="goRegister()"
class="text-primary hover:underline"
>
Register
{{ 'auth.login.registerLink' | translate }}
</button>
</div>
</div>