2015-12-01 19:12:13 +03:00
|
|
|
/*
|
2016-01-07 07:06:39 +03:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2019-01-22 03:33:17 +03:00
|
|
|
Copyright 2019 New Vector Ltd
|
2015-12-01 19:12:13 +03: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-31 18:02:42 +03:00
|
|
|
import { _t } from '../../../languageHandler';
|
2017-05-30 17:09:57 +03:00
|
|
|
import React from 'react';
|
2019-08-30 12:27:51 +03:00
|
|
|
import createReactClass from 'create-react-class';
|
2015-12-01 19:12:13 +03:00
|
|
|
|
2019-08-30 12:27:51 +03:00
|
|
|
module.exports = createReactClass({
|
2019-01-22 03:33:17 +03:00
|
|
|
displayName: 'AuthFooter',
|
2015-12-01 19:12:13 +03:00
|
|
|
|
|
|
|
render: function() {
|
|
|
|
return (
|
2019-01-22 03:33:17 +03:00
|
|
|
<div className="mx_AuthFooter">
|
2019-01-24 19:19:18 +03:00
|
|
|
<a href="https://matrix.org" target="_blank" rel="noopener">{ _t("powered by Matrix") }</a>
|
2015-12-01 19:12:13 +03:00
|
|
|
</div>
|
|
|
|
);
|
2017-05-31 18:02:42 +03:00
|
|
|
},
|
2015-12-01 19:12:13 +03:00
|
|
|
});
|