Add WIP callout to Create Account form
This commit is contained in:
parent
5d8b62d499
commit
a663ee79df
1 changed files with 4 additions and 0 deletions
|
@ -20,6 +20,7 @@ import {
|
||||||
} from "@chakra-ui/react";
|
} from "@chakra-ui/react";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { ErrorMessage, getGraphQLErrorMessage } from "../util";
|
import { ErrorMessage, getGraphQLErrorMessage } from "../util";
|
||||||
|
import WIPCallout from "./WIPCallout";
|
||||||
|
|
||||||
export default function LoginModal({ isOpen, onClose }) {
|
export default function LoginModal({ isOpen, onClose }) {
|
||||||
return (
|
return (
|
||||||
|
@ -165,6 +166,9 @@ function CreateAccountForm() {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<form onSubmit={onSubmit}>
|
<form onSubmit={onSubmit}>
|
||||||
|
<Box display="flex" justifyContent="center" marginBottom="3">
|
||||||
|
<WIPCallout>TODO: This form isn't wired up yet!</WIPCallout>
|
||||||
|
</Box>
|
||||||
<FormControl>
|
<FormControl>
|
||||||
<FormLabel>DTI Username</FormLabel>
|
<FormLabel>DTI Username</FormLabel>
|
||||||
<Input type="text" />
|
<Input type="text" />
|
||||||
|
|
Loading…
Reference in a new issue