// External imports import * as React from "react" import { Varchar, AdvancedDataType } from "fawkes-server/build/support" // Internal imports import * as ce from "../../helpers/componentEnhancer" import AdvancedForm from "../reusable/advancedForm/advancedForm" import AdvancedFormField from "../reusable/advancedForm/advancedFormField" import AdvancedFormInput from "../reusable/advancedForm/presenters/advancedFormInput" import AdvancedFormSubmitButton from "../reusable/advancedForm/presenters/advancedFormSubmitButton" import * as userActions from "../../actions/user" import Title from "../reusable/title" import Button from "../reusable/button" export interface ParentProps {} interface StateProps {} interface DispatchProps { sendResetPasswordLink: (email: string) => void } interface LocalState {} class ForgotPasswordForm extends React.Component< ParentProps & StateProps & DispatchProps & ce.EnhancedPropsPrivate, LocalState > { render() { return (