30 lines
992 B
Plaintext
30 lines
992 B
Plaintext
|
<?xml version="1.0" encoding="ISO-8859-1" ?>
|
||
|
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
||
|
pageEncoding="ISO-8859-1" %>
|
||
|
<%@ page import="javax.servlet.http.HttpSession" %>
|
||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
|
<head>
|
||
|
<title>Cards Against Humanity</title>
|
||
|
<script type="text/javascript" src="js/jquery-1.7.1.js"></script>
|
||
|
<script type="text/javascript" src="js/cah.js"></script>
|
||
|
<link rel="stylesheet" type="text/css" href="cah.css" media="screen" />
|
||
|
</head>
|
||
|
<body>
|
||
|
<% HttpSession hSession = request.getSession(true); %>
|
||
|
<%--
|
||
|
< % = new net.socialgamer.cah.data.WhiteDeck().getNextCard().toString() % >
|
||
|
--%>
|
||
|
|
||
|
<div id="nickbox">
|
||
|
Nickname: <input type="text" id="nickname" value="" maxlength="30" />
|
||
|
<input type="button" id="nicknameconfirm" value="Set" />
|
||
|
</div>
|
||
|
|
||
|
<div id="canvass">
|
||
|
<div id="log"></div>
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
</html>
|