Created
January 19, 2023 05:54
-
-
Save avernet/8e3206d54684a74d1cbe22f29bdffdca to your computer and use it in GitHub Desktop.
Tomcat login page
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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