25 lines
461 B
HTML
25 lines
461 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
</head>
|
|
<body>
|
|
<p>
|
|
Form-based Authentication
|
|
</p>
|
|
<form action="j_security_check">
|
|
<p>
|
|
<strong>Username </strong>
|
|
<input name="j_username" type="text"/>
|
|
</p>
|
|
<p>
|
|
<strong>Password </strong>
|
|
<input name="j_password" type="text"/>
|
|
</p>
|
|
<p>
|
|
<input type="submit" value="Login">
|
|
</p>
|
|
</form>
|
|
</body>
|
|
</html> |