Created
February 6, 2021 16:55
-
-
Save rajj6/ae6adb0a50323be1517c3faca18eaf87 to your computer and use it in GitHub Desktop.
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 xmlns="http://www.w3.org/1999/xhtml" xmlns:th="https://www.thymeleaf.org" | |
xmlns:sec="https://www.thymeleaf.org/thymeleaf-extras-springsecurity3"> | |
<head > | |
<title>Spring Security Example </title> | |
</head> | |
<body> | |
<div th:if="${param.error}"> | |
Invalid username and password. | |
</div> | |
<div th:if="${param.logout}"> | |
You have been logged out. | |
</div> | |
<form th:action="@{/login}" method="post"> | |
<div><label> User Name : <input type="text" name="username"/> </label></div> | |
<div><label> Password: <input type="password" name="password"/> </label></div> | |
<div><input type="submit" value="Sign In"/></div> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment