Dashboard-Automatizase/app/reset-password/page.tsx
Luis Erlacher 0152a2fda0 feat: add n8n API testing script for Google OAuth2 schema and existing credentials
- Implemented a bash script to test n8n API and retrieve credential schemas.
- Added types for API responses, Google Calendar, and WhatsApp instances.
- Configured Vitest for testing with React and added setup for testing-library.
2025-10-10 14:29:02 -03:00

114 lines
3.4 KiB
TypeScript

"use client";
import Link from "next/link";
import { useState } from "react";
import { supabase } from "@/lib/supabase";
export default function ResetPasswordPage() {
const [email, setEmail] = useState("");
const [message, setMessage] = useState("");
const [error, setError] = useState("");
const [loading, setLoading] = useState(false);
const handleResetPassword = async (e: React.FormEvent) => {
e.preventDefault();
setError("");
setMessage("");
setLoading(true);
// Validação
if (!email) {
setError("Por favor, insira seu email");
setLoading(false);
return;
}
const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
if (!emailRegex.test(email)) {
setError("Email inválido");
setLoading(false);
return;
}
try {
const { error: resetError } = await supabase.auth.resetPasswordForEmail(
email,
{
redirectTo: `${window.location.origin}/auth/callback`,
},
);
if (resetError) throw resetError;
setMessage("Email enviado! Verifique sua caixa de entrada.");
setEmail(""); // Limpar campo
} catch (err) {
const error = err as Error;
setError(error.message || "Erro ao enviar email. Tente novamente.");
} finally {
setLoading(false);
}
};
return (
<div className="min-h-screen bg-gray-900 flex items-center justify-center px-4">
<div className="max-w-md w-full space-y-8">
{/* Logo */}
<div className="text-center">
<h1 className="text-4xl font-bold text-primary-500">AutomatizaSE</h1>
<p className="mt-2 text-gray-400">Recuperar Senha</p>
</div>
{/* Form */}
<form onSubmit={handleResetPassword} className="mt-8 space-y-6">
<div>
<label
htmlFor="email"
className="block text-sm font-medium text-gray-300"
>
Email
</label>
<input
id="email"
type="email"
value={email}
onChange={(e) => setEmail(e.target.value)}
className="mt-1 block w-full px-3 py-2 bg-gray-800 border border-gray-700 rounded-md text-white focus:outline-none focus:ring-2 focus:ring-primary-500"
placeholder="seu@email.com"
/>
</div>
{message && (
<div className="text-green-400 text-sm text-center bg-green-900/20 p-3 rounded">
{message}
</div>
)}
{error && (
<div className="text-red-400 text-sm text-center bg-red-900/20 p-3 rounded">
{error}
</div>
)}
<button
type="submit"
disabled={loading}
className="w-full flex justify-center py-2 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-primary-600 hover:bg-primary-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary-500 disabled:opacity-50"
>
{loading ? "Enviando..." : "Enviar email de recuperação"}
</button>
<div className="text-center">
<Link
href="/login"
className="text-sm text-primary-400 hover:text-primary-300"
>
Voltar para login
</Link>
</div>
</form>
</div>
</div>
);
}