+
Create {createUserType === 'employee' ? 'Employee' : 'Admin'}
@@ -473,7 +473,7 @@ export default function AdminUsersPage() {
type="text"
name="username"
required
- className="w-full px-3 py-2 border border-gray-300 dark:border-gray-700 rounded-lg theme-bg-primary theme-text-primary"
+ className="form-input"
/>
@@ -482,7 +482,7 @@ export default function AdminUsersPage() {
type="email"
name="email"
required
- className="w-full px-3 py-2 border border-gray-300 dark:border-gray-700 rounded-lg theme-bg-primary theme-text-primary"
+ className="form-input"
/>
@@ -492,7 +492,7 @@ export default function AdminUsersPage() {
name="password"
required
minLength={6}
- className="w-full px-3 py-2 border border-gray-300 dark:border-gray-700 rounded-lg theme-bg-primary theme-text-primary"
+ className="form-input"
/>
@@ -501,7 +501,7 @@ export default function AdminUsersPage() {
type="text"
name="firstName"
required
- className="w-full px-3 py-2 border border-gray-300 dark:border-gray-700 rounded-lg theme-bg-primary theme-text-primary"
+ className="form-input"
/>
@@ -510,7 +510,7 @@ export default function AdminUsersPage() {
type="text"
name="lastName"
required
- className="w-full px-3 py-2 border border-gray-300 dark:border-gray-700 rounded-lg theme-bg-primary theme-text-primary"
+ className="form-input"
/>
{createUserType === 'employee' && (
@@ -520,7 +520,7 @@ export default function AdminUsersPage() {
type="text"
name="department"
required
- className="w-full px-3 py-2 border border-gray-300 dark:border-gray-700 rounded-lg theme-bg-primary theme-text-primary"
+ className="form-input"
/>
)}
diff --git a/src/app/dashboard/appointments/[appointmentId]/page.tsx b/src/app/dashboard/appointments/[appointmentId]/page.tsx
index af74cac..657497f 100644
--- a/src/app/dashboard/appointments/[appointmentId]/page.tsx
+++ b/src/app/dashboard/appointments/[appointmentId]/page.tsx
@@ -336,7 +336,7 @@ export default function AppointmentDetailPage() {