2022-06-07 23:48:57 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en" xmlns="http://www.w3.org/1999/html">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Padel Tournaments System</title>
|
|
|
|
<link href="style.css" rel="stylesheet">
|
2022-06-14 08:46:41 +02:00
|
|
|
<script type="text/javascript" src="app.js"></script>
|
2022-06-07 23:48:57 +02:00
|
|
|
</head>
|
|
|
|
|
2022-06-19 10:11:28 +02:00
|
|
|
<body onload="renderTournaments();logoutVisibility(); loginVisibility();">
|
2022-06-07 23:48:57 +02:00
|
|
|
<header>
|
|
|
|
<div class="logoBox">
|
2022-06-14 15:12:31 +02:00
|
|
|
<a class="header_link" href="../../index.html"><img class="logo" src="../../../_global/logo.svg"
|
2022-06-18 14:35:43 +02:00
|
|
|
alt="Logo error"></a>
|
2022-06-07 23:48:57 +02:00
|
|
|
</div>
|
|
|
|
<div class="linkBox">
|
|
|
|
<!-- <span class="dot">JM</span>-->
|
2022-06-19 10:22:16 +02:00
|
|
|
<button class="loginButton" type="submit" onclick="window.location.href='../../logowanie/index.html'"
|
2022-06-19 10:11:28 +02:00
|
|
|
id="login">LOGOWANIE</button>
|
2022-06-19 13:14:20 +02:00
|
|
|
<button class="loginButton" id="logout" onclick="logout()">WYLOGUJ</button>
|
2022-06-08 00:40:04 +02:00
|
|
|
<a class="header_link" href="../../kontakt/index.html">Kontakt</a>
|
|
|
|
<a class="header_link" href="../../ranking/index.html">Ranking</a>
|
|
|
|
<a class="header_link" href="../../index.html">Kalendarz turniejów</a>
|
2022-06-07 23:48:57 +02:00
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
|
|
|
|
<div class="mainInfoBox">
|
|
|
|
<div class="tournamentIconBox">
|
2022-06-08 00:40:04 +02:00
|
|
|
<img class="tournamentIcon" src="../cup.svg" alt="">
|
2022-06-07 23:48:57 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="tournamentDataBox">
|
|
|
|
<div class="tournamentData">
|
2022-06-17 13:45:32 +02:00
|
|
|
|
2022-06-07 23:48:57 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="signInBox">
|
2022-06-19 13:14:20 +02:00
|
|
|
<button class="signIn" onclick="window.location.href='zapisy na turniej/index.html'"
|
|
|
|
id="saverForTournament">ZAPISZ
|
2022-06-18 14:35:43 +02:00
|
|
|
SIĘ!</button>
|
2022-06-07 23:48:57 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="bookmarks">
|
|
|
|
<nav>
|
|
|
|
<ul>
|
2022-06-14 22:51:00 +02:00
|
|
|
<li><a href="#">Informacje</a></li>
|
2022-06-14 15:12:31 +02:00
|
|
|
<li><a href="zapisy/index.html">Zapisy</a></li>
|
|
|
|
<li><a href="drabinka/index.html">Drabinka</a></li>
|
2022-06-07 23:48:57 +02:00
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form">
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|