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

119 lines
3.7 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html" 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-10 15:33:05 +02:00
<script type="text/javascript" src="app.js"></script>
</head>
<body onload="logoutVisibility(); loginVisibility()">
<header>
<div class="logoBox">
<a class="header_link" href="../../../unlogged_user/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='../../../unlogged_user/logowanie/index.html'"
id="login">LOGOWANIE</button>
<a class="header_link" href="../../../unlogged_user/kontakt/index.html">Kontakt</a>
<a class="header_link" href="../../../unlogged_user/ranking/index.html">Ranking</a>
<a class="header_link" href="../../../unlogged_user/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">
<div class="title">Dodawanie turnieju</div>
<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_from">
</label>
</br>
<label>
<input id="term_to">
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>
<h3 class="descriptor">Widoczność turnieju</h3>
<input type="checkbox" checked="checked">
<span class="checkmark"></span>
<h3 class="descriptor">Rankingowość turnieju</h3>
<input type="checkbox">
<span class="checkmark"></span>
2022-06-06 13:50:45 +02:00
</br>
<!-- <div class="buttonBox">-->
<button class="myButton" type="button" id="cancel" onclick="">Anuluj</button>
<button class="myButton2" type="submit" id="tournamentsubmit" onclick="createTournament()">
Załóż turniej
</button>
<!-- </div>-->
2022-06-06 13:50:45 +02:00
</div>
</div>
</body>
</html>