Skip to content
This repository was archived by the owner on Nov 23, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions src/app/auth/login/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d={d} />
</svg>
);
const BoltIcon = ({size = 10}) => <Icon d="M13 10V3L4 14h7v7l9-11h-7z" size={size} />;

Check warning on line 17 in src/app/auth/login/page.tsx

View workflow job for this annotation

GitHub Actions / Install, Lint and Build

'BoltIcon' is assigned a value but never used
const LockClosedIcon = () => <svg className="w-5 h-5 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z" /></svg>;


Expand Down Expand Up @@ -104,15 +104,7 @@
<p className="mt-4 text-lg theme-text-muted">
Sign in to access your dashboard.
</p>
<div className="mt-6 p-4 bg-blue-50 dark:bg-blue-900/20 rounded-lg border border-blue-200 dark:border-blue-800">
<p className="text-sm font-semibold theme-text-primary mb-2">Demo Users (Real Backend):</p>
<div className="text-xs theme-text-muted space-y-1">
<p><strong>SuperAdmin:</strong> superadmin / superadmin123</p>
<p><strong>Admin:</strong> admin / admin123</p>
<p><strong>Employee:</strong> employee / emp123</p>
<p><strong>Customer:</strong> customer / cust123</p>
</div>
</div>

</div>

<form className="space-y-6" onSubmit={handleSubmit}>
Expand Down
Loading