2015-12-01 16:12:13 +00:00
|
|
|
/*
|
2024-09-09 14:57:16 +01:00
|
|
|
Copyright 2019-2024 New Vector Ltd.
|
2019-12-19 17:45:24 -07:00
|
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
2024-09-09 14:57:16 +01:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2015-12-01 16:12:13 +00:00
|
|
|
|
2024-09-09 14:57:16 +01:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2015-12-01 16:12:13 +00:00
|
|
|
*/
|
|
|
|
|
|
2017-05-30 16:09:57 +02:00
|
|
|
import React from "react";
|
2021-10-22 17:23:32 -05:00
|
|
|
|
|
|
|
|
import { _t } from "../../../languageHandler";
|
2015-12-01 16:12:13 +00:00
|
|
|
|
2020-08-29 12:14:16 +01:00
|
|
|
export default class AuthFooter extends React.Component {
|
2021-07-15 15:20:43 +02:00
|
|
|
public render(): React.ReactNode {
|
2015-12-01 16:12:13 +00:00
|
|
|
return (
|
2022-08-01 08:31:14 +01:00
|
|
|
<footer className="mx_AuthFooter" role="contentinfo">
|
2020-02-23 22:14:29 +00:00
|
|
|
<a href="https://matrix.org" target="_blank" rel="noreferrer noopener">
|
2023-09-14 18:47:29 +01:00
|
|
|
{_t("auth|footer_powered_by_matrix")}
|
2020-02-23 22:14:29 +00:00
|
|
|
</a>
|
2022-08-01 08:31:14 +01:00
|
|
|
</footer>
|
2015-12-01 16:12:13 +00:00
|
|
|
);
|
2020-08-29 12:14:16 +01:00
|
|
|
}
|
|
|
|
|
}
|