feat: update branding and localization for various components and configurations
Production CI / validate-and-build (push) Failing after 1m15s

This commit is contained in:
2026-06-15 21:36:09 +03:30
parent f7f8a91a85
commit d1dd67aee7
22 changed files with 84 additions and 63 deletions
@@ -7,7 +7,7 @@
class="bg-surface-card border-surface-border flex h-auto w-full max-w-md flex-col items-center justify-center rounded-lg border px-12 py-10 shadow">
<div class="mb-10 flex flex-col items-center justify-center gap-4 text-center">
<img [src]="logo" alt="مدیریت صورت‌حساب‌های مالیاتی" class="h-auto w-20" />
<span class="text-lg font-bold"> به پنل مدیریت صورت‌حساب‌های مالیاتی سپاس خوش آمدید. </span>
<span class="text-lg font-bold"> {{ authTitle }}</span>
</div>
<!-- @if (activeStep() === "login") { -->
@@ -1,3 +1,4 @@
import { brandingConfig } from '@/branding/branding.config';
import { IAuthResponse, TRoles } from '@/core';
import { AuthService } from '@/core/services/auth.service';
import { ToastService } from '@/core/services/toast.service';
@@ -34,6 +35,8 @@ export class AuthComponent {
selectedRole = signal<TRoles | undefined>(this.role);
accountRole = signal<string>('');
authTitle = `به پنل مدیریت صورت‌حساب‌های مالیاتی ${brandingConfig.title} خوش آمدید.`;
toSignUp = () => {
this.activeStep.set('signup');
};