import { Box, Button, FormControl, FormHelperText, FormLabel, Input, Modal, ModalBody, ModalCloseButton, ModalContent, ModalHeader, ModalOverlay, Tab, TabList, TabPanel, TabPanels, Tabs, } from "@chakra-ui/react"; import React from "react"; export default function LoginModal({ isOpen, onClose }) { return ( Welcome back to Dress to Impress! ✨ Log in Create account ); } function LoginForm() { const onSubmit = (e) => { e.preventDefault(); alert("TODO: Log in!"); }; return (
DTI Username This is separate from your Neopets.com account. DTI Password Careful, never enter your Neopets password on another site! ); } function CreateAccountForm() { const onSubmit = (e) => { e.preventDefault(); alert("TODO: Create account!"); }; return (
DTI Username This will be separate from your Neopets.com account. DTI Password Careful, never use your Neopets password for another site! Confirm DTI Password One more time, to make sure! Email address We'll use this in the future if you need to reset your password, or for us to contact you about your account. We won't sell this address, and we won't send marketing-y emails. ); }