Skip to content

Commit

Permalink
admin sign in page issue solved
Browse files Browse the repository at this point in the history
  • Loading branch information
sinanptm committed Aug 26, 2024
1 parent e411595 commit f1c9ae4
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions client/app/staff/@signin/(.)otp-verification/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
import React from 'react'
'use client';
import { FormEvent } from 'react'
import OtpVerificationModel from '@/components/models/OtpVerificationModel'

const OptInterceptor = () => <OtpVerificationModel returnRoute='/staff/' />

const OptInterceptor = () => {
const handleResend = ()=>{

}
const handleVerify = (e:FormEvent)=>{
handleVerify
}

return <OtpVerificationModel handleResend={handleResend} handleVerify={handleResend} timer={15} key={12} returnRoute='/staff/' />
}

export default OptInterceptor

1 comment on commit f1c9ae4

@vercel
Copy link

@vercel vercel bot commented on f1c9ae4 Aug 26, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.