Just a web script to help track when, where, and what you got from the free treasures scattered about Nightfall in the game Guild Wars.
Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- <!DOCTYPE html>
- <HTML>
- <HEAD>
- <link rel="stylesheet" type="text/css" href="gw-style.css">
- <?php
- session_start();
- if (isset($_SESSION['userid']) && ($_SESSION['access'])){
- $uname = $_SESSION['username'];
- echo '<TITLE>Welcome, ' . $uname . '</TITLE></HEAD><BODY><CENTER>';
- echo 'Proceed to character selection <A HREF="gw-toon.php">here</A><BR />';
- echo 'Create a new character to record <A HREF="gw-create.php" CLASS="navlink">here</A><BR /></CENTER>';
- } else {
- echo '<TITLE>Login Required</TITLE></HEAD><BODY>';
- echo '<CENTER><FORM ACTION="gw-login.php" METHOD="POST">Username:<INPUT TYPE="TEXT" NAME="username" SIZE="20"><BR />';
- echo 'Password:<INPUT TYPE="PASSWORD" NAME="password" SIZE="20"><BR />';
- echo '<INPUT TYPE="SUBMIT" VALUE="Login ..."></FORM></CENTER>';
- }
- ?>
- </BODY>
- </HTML>
|