mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
40 lines
1.1 KiB
JavaScript
40 lines
1.1 KiB
JavaScript
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import {FormattedMessage, FormattedHTMLMessage} from 'mm-intl';
|
|
|
|
export default class SignupTeamConfirm extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div className='signup-team__container'>
|
|
<h3>
|
|
<FormattedMessage
|
|
id='signup_team_confirm.title'
|
|
defaultMessage='Sign up Complete'
|
|
/>
|
|
</h3>
|
|
<p>
|
|
<FormattedHTMLMessage
|
|
id='signup_team_confirm.checkEmail'
|
|
defaultMessage='Please check your email: <strong>{email}</strong><br />Your email contains a link to set up your team'
|
|
values={{
|
|
email: this.props.email
|
|
}}
|
|
/>
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
SignupTeamConfirm.defaultProps = {
|
|
email: ''
|
|
};
|
|
SignupTeamConfirm.propTypes = {
|
|
email: React.PropTypes.string
|
|
};
|