Blame view

imports/client/views/org/enter/ForgotPane.js 2.88 KB
c4d3e07d0   Deepak   added login/reset...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  import React                              from 'react';
  import { Link }                           from 'react-router';
  import { ActionButton }                   from '/imports/client/components/ActionButton';
  import { setQueryParam }                  from '/imports/client/app/utils/setQueryParam';
  import { Button, Form, FormGroup, Label, Input, FormText, Col } from 'reactstrap';
  import { Alert }                          from 'reactstrap';
  import 'velocity-animate';
  import 'velocity-animate/velocity.ui';
  import { VelocityComponent, VelocityTransitionGroup, velocityHelpers } from 'velocity-react';
  import ReactSVG                           from 'react-svg'
  
  export class ForgotPane extends React.Component {
  
    render() {
      return (
bdd4abb61   Deepak   some cleanup
16
        <Col sm={{ size: 12, push: 1, pull: 1 }}>
c4d3e07d0   Deepak   added login/reset...
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
          <VelocityTransitionGroup enter={{ animation: "transition.slideRightIn"}} leave={{animation: "transition.fadeOut" }} runOnMount={true}>
            <div className="enterPane__centerVerticallyWrapper">
              <Link
                to={ setQueryParam(this.props.location, { enter: 'login' }) }>
                <ReactSVG
                  path="/files/images/svg/logo2--white.svg"
                  className="enterPane__logo"
                />
              </Link>
              <div className="enterPane__box">
                <div className="enterPane__header">
                  Reset your password
                </div>
                <Alert color="danger" isOpen={ this.props.data.error.length !== 0 }>
                  { this.props.data.error }
                </Alert>
                <Alert color="success" isOpen={ this.props.data.message.length !== 0 }>
                  { this.props.data.message }
                </Alert>
                <Form onSubmit={ (e) => this.props.onForgot(e) }>
                  <FormGroup>
                    <Input type="email" size="lg"
                        value={ this.props.data.email }
                        onChange={ (e) => this.props.onUpdate('email', e.currentTarget.value) }
                        name="email"
                        id="email"
                        placeholder="Enter your email" />
                  </FormGroup>
                  <FormGroup>
                    <ActionButton
                      loading={ this.props.data.loading }>
                      <Button
                          color="success" size="lg"
                          type="submit"
                          block>
                        Reset password
                      </Button>
                    </ActionButton>
                  </FormGroup>
                  <FormGroup className="enterPane__formGroup--center">
                    <Link className="enterPane__link"
                      to={ setQueryParam(this.props.location, { enter: 'login' }) }>
                      Log In
                    </Link>
                  </FormGroup>
                </Form>
              </div>
            </div>
          </VelocityTransitionGroup>
        </Col>
      );
    }
  }