summaryrefslogtreecommitdiffstats
path: root/webapp/components/header_footer_template.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/header_footer_template.jsx')
-rw-r--r--webapp/components/header_footer_template.jsx74
1 files changed, 74 insertions, 0 deletions
diff --git a/webapp/components/header_footer_template.jsx b/webapp/components/header_footer_template.jsx
new file mode 100644
index 000000000..ce2f59541
--- /dev/null
+++ b/webapp/components/header_footer_template.jsx
@@ -0,0 +1,74 @@
+// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+import $ from 'jquery';
+import {FormattedMessage} from 'react-intl';
+
+import React from 'react';
+import {Link} from 'react-router';
+
+export default class NotLoggedIn extends React.Component {
+ componentDidMount() {
+ $('body').addClass('sticky');
+ $('#root').addClass('container-fluid');
+ }
+ componentWillUnmount() {
+ $('body').removeClass('sticky');
+ $('#root').removeClass('container-fluid');
+ }
+ render() {
+ return (
+ <div className='inner-wrap'>
+ <div className='row content'>
+ {this.props.children}
+ <div className='footer-push'></div>
+ </div>
+ <div className='row footer'>
+ <div className='footer-pane col-xs-12'>
+ <div className='col-xs-12'>
+ <span className='pull-right footer-site-name'>{global.window.mm_config.SiteName}</span>
+ </div>
+ <div className='col-xs-12'>
+ <span className='pull-right footer-link copyright'>{'© 2015 Mattermost, Inc.'}</span>
+ <Link
+ id='help_link'
+ className='pull-right footer-link'
+ to={global.window.mm_config.HelpLink}
+ >
+ <FormattedMessage id='web.footer.help'/>
+ </Link>
+ <Link
+ id='terms_link'
+ className='pull-right footer-link'
+ to={global.window.mm_config.TermsOfServiceLink}
+ >
+ <FormattedMessage id='web.footer.terms'/>
+ </Link>
+ <Link
+ id='privacy_link'
+ className='pull-right footer-link'
+ to={global.window.mm_config.PrivacyPolicyLink}
+ >
+ <FormattedMessage id='web.footer.privacy'/>
+ </Link>
+ <Link
+ id='about_link'
+ className='pull-right footer-link'
+ to={global.window.mm_config.AboutLink}
+ >
+ <FormattedMessage id='web.footer.about'/>
+ </Link>
+ </div>
+ </div>
+ </div>
+ </div>
+ );
+ }
+}
+
+NotLoggedIn.defaultProps = {
+};
+
+NotLoggedIn.propTypes = {
+ children: React.PropTypes.object
+};