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.
Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- <!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>
|