dockered
This commit is contained in:
16
django/frontend/static/js/views/PageNotFoundView.js
Normal file
16
django/frontend/static/js/views/PageNotFoundView.js
Normal file
@ -0,0 +1,16 @@
|
||||
import AbstractView from "./abstracts/AbstractView.js";
|
||||
import { lang } from '../index.js';
|
||||
|
||||
export default class extends AbstractView {
|
||||
constructor(params) {
|
||||
super(params, '404WindowTitle');
|
||||
}
|
||||
|
||||
async getHtml() {
|
||||
return `
|
||||
<h1>404 Bozo</h1>
|
||||
<img src="https://media.giphy.com/media/pm0BKtuBFpdM4/giphy.gif">
|
||||
<p>Git gud</p>
|
||||
`;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user