* created multi-module project from spring-security-mvc-boot * Added JDBC Authentication application to spring-security-mvc-boot-default * Added JDBC Authentication application to spring-security-mvc-boot-mysql * Added JDBC Authentication application to spring-security-mvc-boot-postgre * adding new modules to parent spring-security-mvc-boot module, reformatting sql scripts, and added form fields to H2 LiveTest
30 lines
715 B
HTML
30 lines
715 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
|
|
<title>Login</title>
|
|
</head>
|
|
<body>
|
|
|
|
<p>User login page</p>
|
|
|
|
<form name="f" action="user_login" method="POST">
|
|
<table>
|
|
<tr>
|
|
<td>User:</td>
|
|
<td><input type="text" name="username" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Password:</td>
|
|
<td><input type="password" name="password" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td><input name="submit" type="submit" value="submit" /></td>
|
|
</tr>
|
|
</table>
|
|
|
|
</form>
|
|
<p th:if="${param.error}">Login failed!</p>
|
|
|
|
</body>
|
|
</html> |