38 lines
1.1 KiB
HTML
38 lines
1.1 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>Paddle tournament system</title>
|
|
<link href="style.css" rel="stylesheet">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<div class="form">
|
|
<div class="login">
|
|
<h2>Logowanie</h2>
|
|
<input placeholder="Tutaj wpisz email lub nick" id="loginusername">
|
|
|
|
<input placeholder="Tutaj wpisz hasło" id="loginpassword">
|
|
<br>
|
|
|
|
<!-- trzeba dać cssy buttonowi bo zmieniłem z form na button -->
|
|
<button>
|
|
<input class="myButton" type="submit" value="Zaloguj" id="loginsubmit" />
|
|
</button>
|
|
|
|
<br>
|
|
<a href="#">Zapomniałeś hasła?</a>
|
|
<br>
|
|
<span> Nie masz konta? <a href="../rejestracja/index.html">Zajerestruj się</a></span>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
<script type="text/javascript" src="app.js"></script>
|
|
</body>
|
|
|
|
</html> |