mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
67 lines
2.1 KiB
JavaScript
67 lines
2.1 KiB
JavaScript
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
export default class EmailVerify extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.handleResend = this.handleResend.bind(this);
|
|
|
|
this.state = {};
|
|
}
|
|
handleResend() {
|
|
const newAddress = window.location.href.replace('&resend_success=true', '');
|
|
window.location.href = newAddress + '&resend=true';
|
|
}
|
|
render() {
|
|
var title = '';
|
|
var body = '';
|
|
var resend = '';
|
|
var resendConfirm = '';
|
|
if (this.props.isVerified === 'true') {
|
|
title = global.window.mm_config.SiteName + ' Email Verified';
|
|
body = <p>Your email has been verified! Click <a href={this.props.teamURL + '?email=' + this.props.userEmail}>here</a> to log in.</p>;
|
|
} else {
|
|
title = global.window.mm_config.SiteName + ': You are almost done';
|
|
body = <p>Please verify your email address. Check your inbox for an email.</p>;
|
|
resend = (
|
|
<button
|
|
onClick={this.handleResend}
|
|
className='btn btn-primary'
|
|
>
|
|
Resend Email
|
|
</button>
|
|
);
|
|
if (this.props.resendSuccess) {
|
|
resendConfirm = <div><br /><p className='alert alert-success'><i className='fa fa-check'></i>{' Verification email sent.'}</p></div>;
|
|
}
|
|
}
|
|
|
|
return (
|
|
<div className='col-sm-12'>
|
|
<div className='signup-team__container'>
|
|
<h3>{title}</h3>
|
|
<div>
|
|
{body}
|
|
{resend}
|
|
{resendConfirm}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
EmailVerify.defaultProps = {
|
|
isVerified: 'false',
|
|
teamURL: '',
|
|
userEmail: '',
|
|
resendSuccess: 'false'
|
|
};
|
|
EmailVerify.propTypes = {
|
|
isVerified: React.PropTypes.string,
|
|
teamURL: React.PropTypes.string,
|
|
userEmail: React.PropTypes.string,
|
|
resendSuccess: React.PropTypes.string
|
|
};
|