Files
element-web/src/components/views/auth/CustomServerDialog.js
T

48 lines
1.7 KiB
JavaScript
Raw Normal View History

2015-12-01 16:49:15 +00:00
/*
2016-01-07 04:06:39 +00:00
Copyright 2015, 2016 OpenMarket Ltd
2019-10-28 15:37:22 +00:00
Copyright 2019 The Matrix.org Foundation C.I.C.
2015-12-01 16:49:15 +00:00
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.
*/
2017-05-30 16:09:57 +02:00
import React from 'react';
import createReactClass from 'create-react-class';
2017-05-30 16:09:57 +02:00
import { _t } from '../../../languageHandler';
2015-12-01 16:49:15 +00:00
export default createReactClass({
2015-12-01 16:49:15 +00:00
displayName: 'CustomServerDialog',
render: function() {
return (
<div className="mx_ErrorDialog">
2016-01-13 16:32:41 +01:00
<div className="mx_Dialog_title">
2017-10-11 17:56:17 +01:00
{ _t("Custom Server Options") }
2015-12-01 16:49:15 +00:00
</div>
<div className="mx_Dialog_content">
<p>{_t(
"You can use the custom server options to sign into other " +
"Matrix servers by specifying a different homeserver URL. This " +
"allows you to use this app with an existing Matrix account on a " +
"different homeserver.",
)}</p>
2015-12-01 16:49:15 +00:00
</div>
<div className="mx_Dialog_buttons">
<button onClick={this.props.onFinished} autoFocus={true}>
2017-10-11 17:56:17 +01:00
{ _t("Dismiss") }
2015-12-01 16:49:15 +00:00
</button>
</div>
</div>
);
2017-10-11 17:56:17 +01:00
},
2015-12-01 16:49:15 +00:00
});