summaryrefslogtreecommitdiffstats
path: root/WebContent/LoginSuccess.jsp
blob: d4fe5deedf848c28cf8b034a3ef8521276249447 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Welcome</title>
</head>
<body>
	<h1>Welcome <%= session.getAttribute("username") %><br>
	<a href="LoginFormWithJpaAndJsp.jsp">Retry</a>
</body>
</html>