2022-05-30 01:02:38 +02:00
|
|
|
<!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">
|
2022-05-30 23:26:22 +02:00
|
|
|
<title>Padel Tournaments System</title>
|
2022-05-30 01:02:38 +02:00
|
|
|
<link href="style.css" rel="stylesheet">
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css" />
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2022-05-30 19:05:46 +02:00
|
|
|
<div class="container">
|
|
|
|
<div class="form">
|
|
|
|
<div class="register">
|
|
|
|
<h2>Rejestracja</h2>
|
|
|
|
|
|
|
|
<input placeholder="Imię" id="regname">
|
|
|
|
<span class="icon-dice"></span>
|
|
|
|
<input placeholder="Nazwisko" id="regsurname">
|
|
|
|
<br>
|
|
|
|
|
2022-05-30 20:17:26 +02:00
|
|
|
<img src="src/person.svg">
|
2022-05-30 19:05:46 +02:00
|
|
|
<input placeholder="Login" id="regusername">
|
|
|
|
<br>
|
|
|
|
|
2022-05-30 20:17:26 +02:00
|
|
|
<img src="src/mail.svg">
|
2022-05-30 19:05:46 +02:00
|
|
|
<input placeholder="Email" id="regmail">
|
|
|
|
<br>
|
2022-05-30 20:17:26 +02:00
|
|
|
|
|
|
|
<img src="src/phone.svg">
|
2022-05-30 19:05:46 +02:00
|
|
|
<input placeholder="Telefon" id="regphone">
|
|
|
|
<br>
|
2022-05-30 20:17:26 +02:00
|
|
|
|
|
|
|
<img src="src/lock.svg">
|
2022-05-30 19:05:46 +02:00
|
|
|
<input placeholder="Hasło" type="password" id="regpassword" name="password">
|
|
|
|
<i class="bi bi-eye-slash" id="togglePassword"></i>
|
|
|
|
<br>
|
2022-05-30 20:17:26 +02:00
|
|
|
|
|
|
|
<img src="src/lock.svg">
|
2022-05-30 19:05:46 +02:00
|
|
|
<input placeholder="Potwierdź hasło" type="password" id="password2" name="password">
|
|
|
|
<i class="bi bi-eye-slash" id="togglePassword2"></i>
|
|
|
|
|
2022-05-30 23:26:22 +02:00
|
|
|
<form action="#">
|
|
|
|
<input class="myButton" type="submit" value="Zarejestruj" id="regsubmit" />
|
|
|
|
</form>
|
2022-05-30 19:05:46 +02:00
|
|
|
|
|
|
|
<br>
|
|
|
|
<a href="#">Zapomniałeś hasła?</a>
|
|
|
|
<br>
|
2022-05-30 23:26:22 +02:00
|
|
|
|
2022-05-30 19:05:46 +02:00
|
|
|
<span> Masz już konto? <a href="../logowanie/index.html">Zaloguj się</a></span>
|
|
|
|
</div>
|
2022-05-30 01:02:38 +02:00
|
|
|
</div>
|
|
|
|
|
2022-05-30 19:05:46 +02:00
|
|
|
</div>
|
|
|
|
<script type="text/javascript" src="myscript.js"></script>
|
2022-05-30 01:02:38 +02:00
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|