This commit is contained in:
2024-04-21 12:48:12 +02:00
commit c7289e5bdd
34 changed files with 3179 additions and 0 deletions

13
stranky/COD.html Normal file
View File

@@ -0,0 +1,13 @@
<section id="hero">
<h1>Vitajte</h1>
</section>
<section>
<h2 id="Úvod">Úvod</h2>
<p>Game Hub je miesto o hrách!
</section>
<section>
<h2 id="Top_Hry">Top Hry</h2>
</section>
<section>
<h2 id="Info">Informácie</h2>
</section>

4
stranky/Hry.html Normal file
View File

@@ -0,0 +1,4 @@
<section id="hero">
<h1>Blog</h1>
<h2 id="Hry">Hry</h2>
</section>

10
stranky/Login.html Normal file
View File

@@ -0,0 +1,10 @@
<div class="login-container">
<h2>Login</h2>
<form id="login-form">
<input type="text" id="login-username" placeholder="Username" required>
<input type="password" id="login-password" placeholder="Password" required>
<button type="submit">Login</button>
</form>
<p>Don't have an account? <a href="signup.html">Sign up</a></p>
</div>

10
stranky/Signup.html Normal file
View File

@@ -0,0 +1,10 @@
<div class="signup-container">
<h2>Sign Up</h2>
<form id="signup-form">
<input type="text" id="signup-username" placeholder="Username" required>
<input type="email" id="signup-email" placeholder="Email" required>
<input type="password" id="signup-password" placeholder="Password" required>
<button type="submit">Sign Up</button>
</form>
<p>Already have an account? <a href="login.html">Login</a></p>
</div>

13
stranky/index.html Normal file
View File

@@ -0,0 +1,13 @@
<section id="hero">
<h1>Vitajte</h1>
</section>
<section>
<h2 id="Úvod">Úvod</h2>
<p>Game Hub je miesto o hrách!
</section>
<section>
<h2 id="Top_Hry">Top Hry</h2>
</section>
<section>
<h2 id="Info">Informácie</h2>
</section>