%@ Language=JScript %>
<%
var content = "";
content += "\n";
//get the username
var rs = Server.CreateObject("adodb.recordset");
var sql = "SELECT username FROM [user] WHERE id = " + Session("userid");
rs.Open(sql, connStr);
content += "
Report a game
\n";
content += "Remember that if you are reporting a result of a game, that was challenged through this website, you have to find the game and report the result through the game details page. You can also read an explanation of the game reporting system.
\n";
content += "
\n";
content += "\n";
content += "
\n";
var title = "Report a game";
pageTemplate(content, title);
%>