%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%-- Note: The just-previous page directive is the first line of
the JSP, as it should be according to the JSP spec., so the
parser can determine the pageEncoding immediately for parsing
the rest of the text. The contentType specifies the contentType
and charset of the response for this page.
--%>
<%-- Note: The following taglib is not needed for correct execution,
since there is a relevant taglib directive in header.jsp,
but this directive prevents spurious warnings in the IDE.
--%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
Welcome to the Pizza Shop!
Note: Admin needs to add pizza sizes (go to
home page, then admin page)
Pizza Sizes:
${curSize}
Today's Pizza Toppings:
${curTopping}
Pizza Orders for room ${student.roomNo}
No orders for room ${student.roomNo}
Size ${order.pizzaSize}, status ${order.statusString},
Toppings:
${top}