Implemented email verification
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import ErrorCard from '@/components/auth/ErrorCard'
|
||||
import ErrorCard from '@/components/auth/error-card'
|
||||
|
||||
const AuthErrorPage = () => {
|
||||
return (
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
'use client'
|
||||
|
||||
import { ReactElement } from 'react'
|
||||
import Navbar from '@/components/auth/Navbar'
|
||||
import Navbar from '@/components/auth/navbar'
|
||||
|
||||
type Props = {
|
||||
//params: { locale: string };
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { LoginForm } from '@/components/auth/LoginForm'
|
||||
import { LoginForm } from '@/components/auth/login-form'
|
||||
|
||||
const LoginPage = () => {
|
||||
return (
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { RegisterForm } from '@/components/auth/RegisterForm'
|
||||
import { RegisterForm } from '@/components/auth/register-form'
|
||||
|
||||
const RegisterPage = () => {
|
||||
return (
|
||||
|
||||
5
app/[locale]/auth/user-verification/[token]/page.tsx
Normal file
5
app/[locale]/auth/user-verification/[token]/page.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import UserVerificationForm from '@/components/auth/user-verification-form'
|
||||
|
||||
export default function TokenVerificationPage ({ params }: { params: { token: string } }) {
|
||||
return <UserVerificationForm token={params.token}/>
|
||||
}
|
||||
Reference in New Issue
Block a user