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";
|
||||
import React from "react";
|
||||
import { ErrorMessage, getGraphQLErrorMessage } from "../util";
|
||||
import WIPCallout from "./WIPCallout";
|
||||
|
||||
export default function LoginModal({ isOpen, onClose }) {
|
||||
return (
|
||||
|
@ -165,6 +166,9 @@ function CreateAccountForm() {
|
|||
|
||||
return (
|
||||
<form onSubmit={onSubmit}>
|
||||
<Box display="flex" justifyContent="center" marginBottom="3">
|
||||
<WIPCallout>TODO: This form isn't wired up yet!</WIPCallout>
|
||||
</Box>
|
||||
<FormControl>
|
||||
<FormLabel>DTI Username</FormLabel>
|
||||
<Input type="text" />
|
||||
|
|
Loading…
Reference in a new issue