"use client"; import React, { useState } from 'react'; import { UserAuthForm } from '../components/user-auth-form'; const AuthenticationScreen = () => { const [isAuthenticated, setIsAuthenticated] = useState(false); const handleLogin = async () => { try { localStorage.setItem('authToken', 'dummy-token'); setIsAuthenticated(true); alert('Login Successful'); } catch (error) { console.error('Login error:', error); alert('Login Error'); } }; const handleLogout = async () => { try { localStorage.removeItem('authToken'); setIsAuthenticated(false); alert('Logout Successful'); } catch (error) { console.error('Logout error:', error); alert('Logout Error'); } }; return (
"Errar é Humano."
General Bots
Enter your email below to create your account
By clicking continue, you agree to our Terms of Service and Privacy Policy.