Added a Login and Register-Page

This commit is contained in:
CodingPhoenixx
2026-02-12 16:31:47 +01:00
parent 7a69e4a4ea
commit 61ebfec1c9
10 changed files with 311 additions and 15 deletions
+11
View File
@@ -0,0 +1,11 @@
import { LitElement, html } from 'lit';
import { customElement } from 'lit/decorators.js';
@customElement('competition-page')
export class CompetitionPage extends LitElement {
render() {
return html`
<h1>Welcome to the Competitions</h1>
`;
}
}