aboutsummaryrefslogtreecommitdiff
path: root/src/main/webapp/index.jsp
blob: 9e758a4f067c965741b4a36ca1cbf6ed3ff7e82e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
    <%@page import="pokemon.Database"%>
<!DOCTYPE html>
<% %>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<%

Database d=Database.getInstance();

out.print(d.getUsername());

%>

</body>
</html>