20 lines
766 B
HTML
20 lines
766 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">
|
|
<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" value="Login">
|
|
<button onclick="window.location.href='https://watch.twip-network.org/pages/register.html'">Register</button>
|
|
</form>
|
|
</body>
|
|
</html>
|