Skip to content

Instantly share code, notes, and snippets.

@avernet
Created January 19, 2023 05:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save avernet/8e3206d54684a74d1cbe22f29bdffdca to your computer and use it in GitHub Desktop.
Save avernet/8e3206d54684a74d1cbe22f29bdffdca to your computer and use it in GitHub Desktop.
Tomcat login page
<!DOCTYPE html>
<html>
<head>
<title>Login Page</title>
</head>
<body>
<form action="/orbeon/j_security_check" method="post">
<label for="username">Username:</label>
<input type="text" name="j_username">
<br>
<label for="password">Password:</label>
<input type="password" name="j_password">
<br><br>
<input type="submit" value="Login">
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment