This is a Next.js project bootstrapped with create-next-app.
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun devOpen http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.js. The page auto-updates as you edit the file.
This project uses next/font to automatically optimize and load Geist, a new font family for Vercel.
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Check out our Next.js deployment documentation for more details.
import React from "react"; import { zodResolver } from "@hookform/resolvers/zod"; import { useForm } from "react-hook-form"; import { z } from "zod"; import { Button } from "@/components/ui/button" import { Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, } from "@/components/ui/form" import { Input } from "@/components/ui/input" import Formfield from "./Formfield";
const formSchema = z.object({ username: z.string().min(2, { message: "Username must be at least 2 characters.", }), });
const InterviewForm = () => { // 1. Define your form. const form = useForm({ resolver: zodResolver(formSchema), defaultValues: { jobTitle: "", description:"", duration:"", type:"" }, });
// 2. Define a submit handler. function onSubmit(values) { console.log(values); // ✅ Validated values } return (
<Button className="btn-primary" type="submit">
{isSignIn ? "Sign In" : "Create an account"}
</Button>
<div>
{isSignIn ? "Don't have an account?" : "Already have an account?"}{" "}
<Link
href={!isSignIn ? "/signin" : "/signup"}
className="font-bold"
>
{isSignIn ? "Sign Up" : "Sign In"}
</Link>
</div>
</form>
</Form>
export default InterviewForm;