18 lines
590 B
HTML
18 lines
590 B
HTML
<!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">
|
|
</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="\w{8,128}" placeholder="Password" required>
|
|
<input type="submit" value="Login">
|
|
</form>
|
|
</body>
|
|
</html>
|