* 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
27 lines
542 B
HTML
27 lines
542 B
HTML
<html>
|
|
<head></head>
|
|
|
|
<body>
|
|
<h1>Login</h1>
|
|
|
|
<form name='f' action="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>
|
|
|
|
</body>
|
|
</html> |