summaryrefslogtreecommitdiffstats
path: root/WebContent/LoginForm.jsp
blob: ec3f7a98f560d3fd7a6a0fb484e59c0e1b1e92eb (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="LoginServlet" method="post">
		<label for="username">Username:</label><input type="text" name="username" id="username"><br>
		<label for="password">Password:</label><input type="text" name="password" id="password"><br>
		<input type="submit"><input type="reset">
	</form>
</body>
</html>