mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-17 23:02:51 +03:00
59 lines
2.2 KiB
JavaScript
59 lines
2.2 KiB
JavaScript
|
/*
|
||
|
Copyright 2015, 2016 OpenMarket Ltd
|
||
|
|
||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
you may not use this file except in compliance with the License.
|
||
|
You may obtain a copy of the License at
|
||
|
|
||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
||
|
Unless required by applicable law or agreed to in writing, software
|
||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
See the License for the specific language governing permissions and
|
||
|
limitations under the License.
|
||
|
*/
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
import UserSettingsStore from '../../../UserSettingsStore';
|
||
|
|
||
|
const React = require('react');
|
||
|
|
||
|
module.exports = React.createClass({
|
||
|
displayName: 'LoginPage',
|
||
|
|
||
|
render: function() {
|
||
|
if (UserSettingsStore.getTheme() === 'status') {
|
||
|
return (
|
||
|
<div className="mx_StatusLogin">
|
||
|
<div className="mx_StatusLogin_brand">
|
||
|
<img src="themes/status/img/logo.svg" alt="Status" width="221" height="53"/>
|
||
|
</div>
|
||
|
<div className="mx_StatusLogin_content">
|
||
|
<div className="mx_StatusLogin_header">
|
||
|
<h1>Status Community Chat</h1>
|
||
|
<div className="mx_StatusLogin_subtitle">
|
||
|
A safer, decentralised communication platform <a href="https://riot.im">powered by Riot</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
{ this.props.children }
|
||
|
<div className="mx_StatusLogin_footer">
|
||
|
<p>This channel is for our development community.</p>
|
||
|
<p>Interested in SNT and discussions on the cryptocurrency market?</p>
|
||
|
<p><a href="#" className="mx_StatusLogin_footer_cta">Join Telegram Chat</a></p>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
else {
|
||
|
return (
|
||
|
<div className="mx_Login">
|
||
|
{ this.props.children }
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
},
|
||
|
});
|