Padel-Tournaments-System/frontend/panel_organizatora/dodawanie turnieju/index.html

96 lines
2.9 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
2022-06-06 13:50:45 +02:00
<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">
</head>
<body onload="logoutVisibility(); loginVisibility()">
<script type="text/javascript" src="app.js"></script>
<header>
<div class="logoBox">
<a class="header_link" href="../../index.html"><img class="logo" src="../../_global/logo.svg"
alt="Logo error"></a>
</div>
<div class="linkBox">
<!-- <span class="dot">JM</span>-->
<button class="loginButton" type="submit" onclick="window.location.href='../logowanie/index.html'"
id="login">LOGOWANIE</button>
<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>
<button id="logout" onclick="logout()">Wyloguj</button>
</div>
</header>
<!-- TODO sztuczny padding-->
<div> .</div>
<div> .</div>
<div class="container">
<div class="form">
<h3 class="descriptor">Nazwa Turnieju</h3>
2022-05-31 02:20:18 +02:00
<label>
<input id="name">
2022-05-31 02:20:18 +02:00
</label>
<h3 class="descriptor">Termin</h3>
2022-05-31 02:20:18 +02:00
<label>
<input id="term">
2022-05-31 02:20:18 +02:00
</label>
<h3 class="descriptor">Miejsce</h3>
2022-05-31 02:20:18 +02:00
<label>
<input id="place">
2022-05-31 02:20:18 +02:00
</label>
<h3 class="descriptor">Kategorie</h3>
2022-05-31 02:20:18 +02:00
<label>
<input id="category">
2022-05-31 02:20:18 +02:00
</label>
<h3 class="descriptor">Ranga</h3>
2022-05-31 02:20:18 +02:00
<label>
<input id="rank">
2022-05-31 02:20:18 +02:00
</label>
<h3 class="descriptor">Wpisowe</h3>
2022-05-31 02:20:18 +02:00
<label>
<input id="entry-fee">
2022-05-31 02:20:18 +02:00
</label>
<h3 class="descriptor">Dyrektor Turnieju</h3>
2022-05-31 02:20:18 +02:00
<label>
<input id="director">
2022-05-31 02:20:18 +02:00
</label>
<h3 class="descriptor">Telefon</h3>
2022-05-31 02:20:18 +02:00
<label>
<input id="phone">
2022-05-31 02:20:18 +02:00
</label>
<h3 class="descriptor">Zapisy</h3>
2022-05-31 02:20:18 +02:00
<label>
<input id="entries">
2022-05-31 02:20:18 +02:00
</label>
<h3 class="descriptor">Dodatkowe informacje</h3>
2022-05-31 02:20:18 +02:00
<label>
<textarea name="Text1" cols="40" rows="5" id="add-info"></textarea>
2022-05-31 02:20:18 +02:00
</label>
2022-06-06 13:50:45 +02:00
</br>
<button class="myButton" type="submit" id="tournamentsubmit" onclick="createTournament()">
2022-06-06 13:50:45 +02:00
Załóż turniej
</button>
</div>
</div>
</body>
</html>