Blame view

imports/client/views/org/enter/RecoverPassword.js 1.26 KB
cc8fd8a94   Deepak   Moved all files t...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
  import React from 'react';
  import { Row, Col, Alert, FormGroup, FormControl, Button } from 'react-bootstrap';
  import handleRecoverPassword from './module/recover-password';
  
  export default class RecoverPassword extends React.Component {
    componentDidMount() {
      handleRecoverPassword({ component: this });
    }
  
    handleSubmit(event) {
      event.preventDefault();
    }
  
    render() {
      return (
        <div className="RecoverPassword">
          <Row>
            <Col xs={ 12 } sm={ 6 } md={ 4 }>
              <h4 className="page-header">Recover Password</h4>
              <Alert bsStyle="info">
                Enter your email address below to receive a link to reset your password.
              </Alert>
              <form
                ref={ form => (this.recoverPasswordForm = form) }
                className="recover-password"
                onSubmit={ this.handleSubmit }
              >
                <FormGroup>
                  <FormControl
                    type="email"
                    ref="emailAddress"
                    name="emailAddress"
                    placeholder="Email Address"
                  />
                </FormGroup>
                <Button type="submit" bsStyle="success">Recover Password</Button>
              </form>
            </Col>
          </Row>
        </div>
      );
    }
  }