14 lines
341 B
PHP
14 lines
341 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Login Page</title>
|
|
</head>
|
|
<body>
|
|
<form action="login.php" method="post">
|
|
Email: <input type="text" name="email"><br>
|
|
Password: <input type="password" name="password"><br>
|
|
<input type="submit" value="Login">
|
|
</form>
|
|
</body>
|
|
</html> |