Files
frontend-app-authn/src/common-components/NotFoundPage.jsx
Waheed Ahmed 56a1caaacb Make logistration pages responsive. (#69)
Made logistration pages response for smaller devices using
paragon components and bootstrap classes.

VAN-222
2021-01-06 12:36:55 +05:00

17 lines
605 B
JavaScript

import React from 'react';
import { FormattedMessage } from '@edx/frontend-platform/i18n';
export default function NotFoundPage() {
return (
<div className="container-fluid d-flex py-5 justify-content-center align-items-start text-center">
<p className="my-0 py-5 text-muted mw-32em">
<FormattedMessage
id="error.notfound.message"
defaultMessage="The page you're looking for is unavailable or there's an error in the URL. Please check the URL and try again."
description="error message when a page does not exist"
/>
</p>
</div>
);
}