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.
 
 
 

21 righe
797 B

  1. <!DOCTYPE html>
  2. <HTML>
  3. <HEAD>
  4. <link rel="stylesheet" type="text/css" href="gw-style.css">
  5. <?php
  6. session_start();
  7. if (isset($_SESSION['userid']) && ($_SESSION['access'])){
  8. $uname = $_SESSION['username'];
  9. echo '<TITLE>Welcome, ' . $uname . '</TITLE></HEAD><BODY><CENTER>';
  10. echo 'Proceed to character selection <A HREF="gw-toon.php">here</A><BR />';
  11. echo 'Create a new character to record <A HREF="gw-create.php" CLASS="navlink">here</A><BR /></CENTER>';
  12. } else {
  13. echo '<TITLE>Login Required</TITLE></HEAD><BODY>';
  14. echo '<CENTER><FORM ACTION="gw-login.php" METHOD="POST">Username:<INPUT TYPE="TEXT" NAME="username" SIZE="20"><BR />';
  15. echo 'Password:<INPUT TYPE="PASSWORD" NAME="password" SIZE="20"><BR />';
  16. echo '<INPUT TYPE="SUBMIT" VALUE="Login ..."></FORM></CENTER>';
  17. }
  18. ?>
  19. </BODY>
  20. </HTML>