summaryrefslogtreecommitdiffstats
path: root/WebContent/LoginFormWithJpa.jsp
blob: cf0cd3b5a1d2e0018d00a04c747e83a58eef13f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Login</title>
</head>
<body>
	<form action="LoginServletWithJpa" method="post">
		<label for="username">Username:</label><input type="text" name="username" id="username"><br>
		<label for="password">Password:</label><input type="password" name="password" id="password"><br>
		<input type="submit"><input type="reset">
	</form>
</body>
</html>