weblogin/index.php
erdeilevente e33afe7c0f final
2023-01-27 11:57:08 +01:00

24 lines
723 B
PHP

<!DOCTYPE html>
<html lang="hu">
<head>
<meta charset="utf-8">
<title>Belépés</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<form action="login.php" method="post">
<h2>Bejelentkezés</h2>
<?php if (isset($_GET['error'])) { ?>
<p class="error"><?php echo $_GET['error']; ?></p>
<?php } ?>
<label>Felhasználónév</label>
<input type="text" name="uname" placeholder="Felhasználónév*"><br>
<label>Jelszó</label>
<input type="password" name="password" placeholder="Jelszó*"><br>
<button type="submit">Belépés</button>
<a href="signup.php" class="ca">Regisztrálj egy fiókot!</a>
</form>
</body>
</html>