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

17 lines
471 B
JavaScript
Raw Normal View History

2023-12-04 06:32:15 -05:00
import { client } from "../index.js";
2023-11-29 14:56:32 -05:00
import AbstractAuthentificateView from "./AbstractAuthentifiedView.js";
2023-11-27 13:15:15 -05:00
export default class extends AbstractAuthentificateView {
2023-11-27 13:15:15 -05:00
constructor(params) {
2023-11-30 07:05:46 -05:00
super(params, "Home");
this.redirect_url = "/login"
2023-11-27 13:15:15 -05:00
}
async getHtml() {
return `
<h1>HOME</h1>
2023-11-30 19:29:56 -05:00
<a href="/me" class="nav__link" data-link>Me</a>
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
`;
}
}