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

132 lines
4.1 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"
2022-06-18 14:35:43 +02:00
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>
2022-06-18 14:35:43 +02:00
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/pretty-checkbox@3.0/dist/pretty-checkbox.min.css" />
</head>
<body onload="logoutVisibility(); loginVisibility()">
<header>
<div class="logoBox">
<a class="header_link" href="../../normal_user/index.html"><img class="logo" src="../../_global/logo.svg"
2022-06-18 14:35:43 +02:00
alt="Logo error"></a>
</div>
<div class="linkBox">
<!-- <span class="dot">JM</span>-->
2022-06-18 14:35:43 +02:00
<button class="loginButton" type="submit"
onclick="window.location.href='../../normal_user/logowanie/index.html'" id="login">LOGOWANIE</button>
<button class="loginButton" id="logout" onclick="logout()">Wyloguj</button>
<a class="header_link" href="../../normal_user/kontakt/index.html">Kontakt</a>
<a class="header_link" href="../../normal_user/ranking/index.html">Ranking</a>
<a class="header_link" href="../../normal_user/index.html">Kalendarz turniejów</a>
</div>
</header>
<div class="container">
<div class="title">
Dodawanie turnieju
</div>
<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_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>
</br>
<div class="binaryButtonsBox">
Widoczność turnieju
<div class="pretty p-switch p-fill" style="margin-left: 5%">
2022-06-19 09:34:23 +02:00
<input type="checkbox" id="checkBox" />
<div class="state p-success">
<label></label>
</div>
</div>
</div>
<div class="binaryButtonsBox2">
Rankingowość turnieju
<div class="pretty p-switch p-fill" style="margin-left: 5%">
2022-06-19 09:34:23 +02:00
<input type="checkbox" id="checkBoxRanking" />
<div class="state p-success">
<label></label>
</div>
</div>
</div>
<button class="cancelButton" type="button" id="cancel" onclick="">Anuluj</button>
<button class="submitButton" type="submit" id="tournamentsubmit" onclick="createTournament()">
Załóż turniej
</button>
2022-06-06 13:50:45 +02:00
</div>
</div>
</body>
</html>