This commit is contained in:
2024-01-11 09:27:03 +01:00
parent e584aeb36a
commit 59f399c866
12 changed files with 295 additions and 11 deletions

6
templates/404.html Normal file
View File

@@ -0,0 +1,6 @@
<div class="wrapper-404">
<h2>TY KÁR KAM TO DEŠ</h2>
<h1 class="error-code">404</h1>
<h3><i class="fa-solid fa-circle-exclamation error"></i> Nenašli sme stránku ktorú hladáš: <span class="error">__TEMPLATE_PAGE_NAME__</span>. <i class="fa-solid fa-circle-exclamation error"></i></h3>
<a href="/domov" class="back"><i class="fa-solid fa-arrow-left"></i> SPÄŤ DOMOV</a>
</div>

0
templates/account.html Normal file
View File

5
templates/login.html Normal file
View File

@@ -0,0 +1,5 @@
<form method="post">
<input type="email" name="email">
<input type="password" name="password">
<input type="submit">
</form>

8
templates/nav.html Normal file
View File

@@ -0,0 +1,8 @@
<nav>
<div class="logo"><img class="standard-logo" src="http://www.adlerka.sk/wp-content/uploads/2021/09/Logo_text_Adlerka_modro_cerveno_biele-e1652431356820.png" title="Adlerka"></div>
<ul>
<li><a href="/domov">Domov</a></li>
<li><a href="/info">Informácie</a></li>
<li><a href="/login" id="login">Prihlásiť</a></li>
</ul>
</nav>

15
templates/skeleton.html Normal file
View File

@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="sk">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/e9016e1de1.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/remixicon/4.0.1/remixicon.min.css" integrity="sha512-dTsohxprpcruDm4sjU92K0/Gf1nTKVVskNHLOGMqxmokBSkfOAyCzYSB6+5Z9UlDafFRpy5xLhvpkOImeFbX6A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="/assets/style.css">
<title>Adlerka __TEMPLATE_PAGE_NAME__</title>
</head>
<body>
__TEMPLATE__NAV__
__TEMPLATE__PAGE__
</body>
</html>