f7cd8783be
adding api connection to registration and tournament making
90 lines
2.3 KiB
HTML
90 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<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>
|
|
<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">LOGOWANIE</button>
|
|
<a class="header_link" href="#">Kontakt</a>
|
|
<a class="header_link" href="#">Ranking</a>
|
|
<a class="header_link" href="#">Kalendarz turniejów</a>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- TODO sztuczny padding-->
|
|
<div> .</div>
|
|
<div> .</div>
|
|
|
|
<div class="container">
|
|
<div class="form">
|
|
<h3 class="descriptor">Nazwa Turnieju</h3>
|
|
<label>
|
|
<input id="tournamentName">
|
|
</label>
|
|
|
|
<h3 class="descriptor">Termin</h3>
|
|
<label>
|
|
<input>
|
|
</label>
|
|
|
|
<h3 class="descriptor">Miejsce</h3>
|
|
<label>
|
|
<input id="tournamentPlace">
|
|
</label>
|
|
|
|
<h3 class="descriptor">Kategorie</h3>
|
|
<label>
|
|
<input id="ladderType">
|
|
</label>
|
|
|
|
<h3 class="descriptor">Ranga</h3>
|
|
<label>
|
|
<input id="isRanked">
|
|
</label>
|
|
|
|
<h3 class="descriptor">Wpisowe</h3>
|
|
<label>
|
|
<input>
|
|
</label>
|
|
|
|
<h3 class="descriptor">Dyrektor Turnieju</h3>
|
|
<label>
|
|
<input>
|
|
</label>
|
|
|
|
<h3 class="descriptor">Telefon</h3>
|
|
<label>
|
|
<input>
|
|
</label>
|
|
|
|
<h3 class="descriptor">Zapisy</h3>
|
|
<label>
|
|
<input>
|
|
</label>
|
|
|
|
<h3 class="descriptor">Dodatkowe informacje</h3>
|
|
|
|
<label>
|
|
<textarea name="Text1" cols="40" rows="5"></textarea>
|
|
</label>
|
|
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript" src="app.js"></script>
|
|
|
|
</body>
|
|
|
|
</html> |