vela vecí nove more

This commit is contained in:
2024-01-20 19:04:39 +01:00
parent a1f5af75bd
commit dcefd7944a
5 changed files with 19 additions and 9 deletions

19
pages/global/login.html Normal file
View File

@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<link rel="stylesheet" href="../styles/pages/login.css">
<link rel="stylesheet" href="../styles/global.css">
</head>
<body>
<h2>Login</h2>
<form action="../login.php" method="post">
<input type="email" name="email" id="email-field" placeholder="E-Mail" required>
<input type="password" name="password" id="password-field" pattern=".{3,32}" placeholder="Password" required>
<input type="submit" name="login" value="Login">
<a href="/register.php">Don't have an account?</a>
</form>
</body>
</html>