import React from 'react'; import { Helmet } from 'react-helmet'; import brand from 'ba-api/brand'; import PropTypes from 'prop-types'; import { withStyles } from '@material-ui/core/styles'; import { ResetForm } from 'ba-components'; import styles from 'ba-components/Forms/user-jss'; import { Grid } from '@material-ui/core'; class ResetPassword extends React.Component { state = { valueForm: [] } submitForm(values) { setTimeout(() => { this.setState({ valueForm: values }); console.log(`You submitted:\n\n${this.state.valueForm}`); }, 500); // simulate server latency } render() { const title = brand.name + ' - Reset Password'; const description = brand.desc; const { classes } = this.props; return (