blob: 32255f0c004759b5e80868a26be9972134fe22cf (
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"%>
<jsp:useBean id="user" class="de.fhswf.in.inf.fit.aufgabe5.model.Account" scope="session"/>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Welcome</title>
</head>
<body>
<h1>Welcome <jsp:getProperty property="username" name="user"/> </h1>
<a href="LoginFormWithJpaAndJsp.jsp">Retry</a>
</body>
</html>
|