diff options
author | Ognjen Cirkovic <ciraboxkg@gmail.com> | 2022-12-21 00:40:45 +0100 |
---|---|---|
committer | Ognjen Cirkovic <ciraboxkg@gmail.com> | 2022-12-21 00:40:45 +0100 |
commit | 72307dcf589b695babb3a836817fd7b78907fd05 (patch) | |
tree | cd83579ebd4c0dc346ba4fe34f7e68123ebfe007 /src/main/webapp/index.jsp | |
parent | 91913619a1ef54358d58c8185b60024e0747ac96 (diff) |
Inicijalni commit.
Diffstat (limited to 'src/main/webapp/index.jsp')
-rw-r--r-- | src/main/webapp/index.jsp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/main/webapp/index.jsp b/src/main/webapp/index.jsp new file mode 100644 index 0000000..9e758a4 --- /dev/null +++ b/src/main/webapp/index.jsp @@ -0,0 +1,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>
\ No newline at end of file |