13 lines
304 B
HTML
Raw Permalink Normal View History

<html>
<head>
<title>Detect login form and use it</title>
</head>
<body>
<form action="/login-action" method="POST">
<input type="email" name="email" />
<input type="password" name="password" />
<input type="submit" name="login" value="login" />
</form>
</body>
</html>