Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. import React, { Component } from 'react';
  2. import { Field } from 'redux-form';
  3. import { TextField } from 'components';
  4. import RaisedButton from 'material-ui/RaisedButton';
  5.  
  6. export default class ForgotPwdForm extends Component {
  7. render() {
  8. const { goBack } = this.props;
  9. return (
  10. <form>
  11. <div>
  12. <div className="auth-panel" id="step3">
  13. <h3 className="auth-title">Password Reminder</h3>
  14. <div className="auth-msg">Enter a password to create an account:</div>
  15. <Field name="email" component={TextField} label='Email'/>
  16. <div className="auth-footer-controll">
  17. <RaisedButton type="button" className="btn btn-default" label='Back' onClick={goBack}>
  18. <i className="fa fa-arrow-left" aria-hidden="true"></i>
  19. </RaisedButton>
  20. <RaisedButton className="btn btn-success auth-go pull-right" type="submit" label='Reset Password'>
  21. <i className="fa fa-sign-in" aria-hidden="true"></i>
  22. </RaisedButton>
  23. </div>
  24. </div>
  25. </div>
  26. </form>
  27. )
  28. }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement