weblogin1/static/login.html
2024-01-09 09:08:07 +01:00

45 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,minimum-scale=1">
<title>Bánszky Login</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css">
<link href="/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="login">
<form action="/login" method="post">
<fieldset>
<legend>Bejelentkezés</legend>
<div>
<label for="username">
<i class="fas fa-user"></i>
Felhasználónév:
</label>
<input type="text" name="username" id="username" required>
</div>
<div>
<label for="email">
<i class="fas fa-envelope"></i>
E-mail:
</label>
<input type="email" name="email" id="email" required>
</div>
<div>
<label for="password">
<i class="fas fa-lock"></i>
Jelszó:
</label>
<input type="password" name="password" id="password" required>
</div>
<div style="text-align: center;">
<input type="submit" name="kind" value="Regisztráció"><br/>
<input type="submit" name="kind" value="Bejelentkezés">
</div>
</fieldset>
</form>
</div>
</body>
</html>