weblogin1/static/login.html

46 lines
1.3 KiB
HTML
Raw Normal View History

2024-01-09 08:06:59 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,minimum-scale=1">
<title>Login</title>
<!-- the form awesome library is used to add icons to our form -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css">
<!-- include the stylesheet file -->
<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>