blob: 02925c676da43e74f690a5b59a9e0a7bceec7c7d (
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="password" name="password" id="password"><br>
<input type="submit"><input type="reset">
</form>
</body>
</html>
|