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.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

21 lignes
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>