Skip to content

Instantly share code, notes, and snippets.

@rajj6
Created February 6, 2021 16:55
Show Gist options
  • Save rajj6/ae6adb0a50323be1517c3faca18eaf87 to your computer and use it in GitHub Desktop.
Save rajj6/ae6adb0a50323be1517c3faca18eaf87 to your computer and use it in GitHub Desktop.
<!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