ft_transcendence/frontend/static/js/views/HomeView.js

16 lines
397 B
JavaScript
Raw Normal View History

import AbstractAuthentificateView from "./AbstractAuthentificateView.js";
2023-11-27 13:15:15 -05:00
export default class extends AbstractAuthentificateView {
2023-11-27 13:15:15 -05:00
constructor(params) {
super(params);
2023-11-29 10:05:49 -05:00
this.setTitle("Home");
this.redirect_url = "/login"
2023-11-27 13:15:15 -05:00
}
async getHtml() {
return `
<h1>HOME</h1>
2023-11-29 10:05:49 -05:00
<a href="/logout" class="nav__link" data-link>Logout</a>
2023-11-27 13:15:15 -05:00
`;
}
}