2022-05-19 00:54:58 +02:00
|
|
|
<!DOCTYPE html>
|
2022-06-14 19:43:35 +02:00
|
|
|
<html lang="en" xmlns="http://www.w3.org/1999/html" xmlns="http://www.w3.org/1999/html">
|
2022-05-19 00:54:58 +02:00
|
|
|
|
|
|
|
<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">
|
2022-05-31 02:14:17 +02:00
|
|
|
<title>Paddle tournament system</title>
|
2022-05-19 00:54:58 +02:00
|
|
|
<link href="style.css" rel="stylesheet">
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
|
|
<div class="form">
|
2022-06-14 19:43:35 +02:00
|
|
|
<div class="login_header">
|
|
|
|
<img src="../../_global/logo.svg" alt="">
|
2022-06-14 22:51:00 +02:00
|
|
|
<a href="../index.html"><img src="src/x.svg" id="closelog"></a>
|
2022-06-14 19:43:35 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="loginBox">
|
2022-05-19 00:54:58 +02:00
|
|
|
<h2>Logowanie</h2>
|
2022-06-14 19:43:35 +02:00
|
|
|
<input class="login_input" placeholder="Tutaj wpisz email lub nick" id="loginusername">
|
2022-05-19 00:54:58 +02:00
|
|
|
|
2022-06-14 19:43:35 +02:00
|
|
|
<input class="password_input" placeholder="Tutaj wpisz hasło" id="loginpassword" type="password">
|
2022-05-19 00:54:58 +02:00
|
|
|
<br>
|
2022-05-31 02:14:17 +02:00
|
|
|
|
2022-06-01 22:23:12 +02:00
|
|
|
<!-- trzeba dać cssy buttonowi bo zmieniłem z form na button -->
|
2022-06-10 00:56:06 +02:00
|
|
|
<button class="myButton" id="loginsubmit" onclick="login()">
|
2022-06-14 19:43:35 +02:00
|
|
|
ZALOGUJ
|
2022-06-01 22:23:12 +02:00
|
|
|
</button>
|
2022-06-14 19:43:35 +02:00
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="login_footer">
|
2022-06-14 15:12:31 +02:00
|
|
|
<span> Nie masz konta? <a href="rejestracja/index.html">Zajerestruj się</a></span>
|
2022-05-19 00:54:58 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
2022-06-01 22:23:12 +02:00
|
|
|
<script type="text/javascript" src="app.js"></script>
|
2022-05-19 00:54:58 +02:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|