mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Styled 'Not found' error page.
This commit is contained in:
parent
b630410698
commit
fc44322776
@ -833,3 +833,23 @@ div.tab button.active {
|
|||||||
.data-table-row-cell {
|
.data-table-row-cell {
|
||||||
padding-top: 14px;
|
padding-top: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.error-code {
|
||||||
|
text-align: center;
|
||||||
|
font-family: Roboto-Medium;
|
||||||
|
font-weight: 800;
|
||||||
|
font-size: 15em;
|
||||||
|
color: #BaBaBa;
|
||||||
|
}
|
||||||
|
|
||||||
|
.error-code p {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.error-text {
|
||||||
|
text-align: center;
|
||||||
|
font-family: Roboto-Regular;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 500;
|
||||||
|
color: #9e9e9e;
|
||||||
|
}
|
||||||
|
|||||||
@ -16,6 +16,7 @@
|
|||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
import React, {Component} from 'react';
|
import React, {Component} from 'react';
|
||||||
|
import {Col, Row} from "reactstrap";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Error page.
|
* Error page.
|
||||||
@ -28,8 +29,22 @@ class Error extends Component {
|
|||||||
|
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div className="error-page">
|
||||||
404 not found
|
<Row>
|
||||||
|
<Col>
|
||||||
|
<div className="error-code">
|
||||||
|
<p>404</p>
|
||||||
|
</div>
|
||||||
|
</Col>
|
||||||
|
</Row>
|
||||||
|
<Row>
|
||||||
|
<Col>
|
||||||
|
<div className="error-text">
|
||||||
|
<p>The page you are looking for doesn't exist or error occurred.</p>
|
||||||
|
<p>Please click <a href="/publisher">here</a> to go to App publisher home page.</p>
|
||||||
|
</div>
|
||||||
|
</Col>
|
||||||
|
</Row>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user