Files
watch.twip-network.org/pages/login.html

18 lines
526 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" required>
<input type="password" name="password" id="password-field" required>
<input type="submit" value="Login">
</form>
</body>
</html>