blob: a95101ba1ff551ff620d63001a4b422c78a73883 (
plain)
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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import {FormattedMessage} from 'react-intl';
import Client from 'utils/web_client.jsx';
import React from 'react';
import {Link} from 'react-router';
export default class ShouldVerifyEmail extends React.Component {
constructor(props) {
super(props);
this.handleResend = this.handleResend.bind(this);
this.state = {
resendStatus: 'none'
};
}
handleResend() {
const email = this.props.location.query.email;
this.setState({resendStatus: 'sending'});
Client.resendVerification(
email,
() => {
this.setState({resendStatus: 'success'});
},
() => {
this.setState({resendStatus: 'failure'});
}
);
}
render() {
let resendConfirm = '';
if (this.state.resendStatus === 'success') {
resendConfirm = (
<div>
<br/>
<p className='alert alert-success'>
<i className='fa fa-check'/>
<FormattedMessage
id='email_verify.sent'
defaultMessage=' Verification email sent.'
/>
</p>
</div>
);
}
if (this.state.resendStatus === 'failure') {
resendConfirm = (
<div>
<br/>
<p className='alert alert-danger'>
<i className='fa fa-times'/>
<FormattedMessage id='email_verify.failed'/>
</p>
</div>
);
}
return (
<div>
<div className='signup-header'>
<Link to='/'>
<span className='fa fa-chevron-left'/>
<FormattedMessage
id='web.header.back'
/>
</Link>
</div>
<div className='col-sm-12'>
<div className='signup-team__container'>
<h3>
<FormattedMessage
id='email_verify.almost'
defaultMessage='{siteName}: You are almost done'
values={{
siteName: global.window.mm_config.SiteName
}}
/>
</h3>
<div>
<p>
<FormattedMessage
id='email_verify.notVerifiedBody'
defaultMessage='Please verify your email address. Check your inbox for an email.'
/>
</p>
<button
onClick={this.handleResend}
className='btn btn-primary'
>
<FormattedMessage
id='email_verify.resend'
defaultMessage='Resend Email'
/>
</button>
{resendConfirm}
</div>
</div>
</div>
</div>
);
}
}
ShouldVerifyEmail.defaultProps = {
};
ShouldVerifyEmail.propTypes = {
location: React.PropTypes.object.isRequired
};
|