Skip to content

Commit 60197d0

Browse files
committed
fix: contact admin
1 parent e5645ef commit 60197d0

File tree

1 file changed

+6
-21
lines changed

1 file changed

+6
-21
lines changed

components/auth/login-form.tsx

Lines changed: 6 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { FormEvent, useState } from "react";
44
import Link from "next/link";
55
import { useRouter } from "next/navigation";
66
import { toast } from "sonner";
7-
import { Eye, EyeOff, ArrowRight } from "lucide-react";
7+
import { Eye, EyeOff } from "lucide-react";
88
import { Button } from "@/components/ui/button";
99
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
1010
import { Input } from "@/components/ui/input";
@@ -140,26 +140,11 @@ export function LoginForm() {
140140
</CardContent>
141141
</Card>
142142

143-
<div className="pt-8 border-t border-neutral-100 flex flex-col items-center">
144-
<p className="text-[10px] font-black uppercase tracking-[0.2em] text-neutral-400 mb-4">Institutional Helpdesk</p>
145-
<div className="relative group w-full">
146-
<a
147-
href="https://mail.google.com/mail/?view=cm&fs=1&to=admin@placepro.in&su=PlacePro%20Support%20Request"
148-
target="_blank"
149-
rel="noopener noreferrer"
150-
className="flex items-center justify-center gap-3 px-8 py-3 bg-neutral-50 hover:bg-black hover:text-white border border-neutral-200 hover:border-black transition-all duration-300 relative group w-full rounded-sm"
151-
>
152-
<span className="text-[12px] font-bold tracking-tight">Contact System Administrator</span>
153-
<ArrowRight className="w-3.5 h-3.5 transition-transform group-hover:translate-x-1" />
154-
155-
{/* Architectural Dots for Premium Look */}
156-
<div className="absolute top-1 left-1 w-1 h-1 bg-neutral-300 group-hover:bg-white rounded-full transition-colors"></div>
157-
<div className="absolute top-1 right-1 w-1 h-1 bg-neutral-300 group-hover:bg-white rounded-full transition-colors"></div>
158-
<div className="absolute bottom-1 left-1 w-1 h-1 bg-neutral-300 group-hover:bg-white rounded-full transition-colors"></div>
159-
<div className="absolute bottom-1 right-1 w-1 h-1 bg-neutral-300 group-hover:bg-white rounded-full transition-colors"></div>
160-
</a>
161-
</div>
162-
<p className="mt-4 text-[11px] text-neutral-400 font-medium italic">Verify credentials via your department TPO coordinator.</p>
143+
<div className="text-center text-sm text-neutral-500">
144+
Don&apos;t have an account?{" "}
145+
<a href="mailto:admin@placepro.in?subject=PlacePro%20Account%20Request" className="font-medium text-neutral-900 hover:underline underline-offset-4">
146+
Contact Admin
147+
</a>
163148
</div>
164149
</div>
165150
);

0 commit comments

Comments
 (0)