Advertisement
Guest User

Untitled

a guest
May 17th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. <?php include('function.php'); ?>
  2. <head>
  3. <html>
  4. <title>Account Registration</title>
  5. <link rel="stylesheet" type="text/css" href="style.css">
  6. </head>
  7. <body style="font-family:arial;font-size:15px;color:white;"><?php if($_GET['do'] == "register") { Register(); }elseif($_GET['error']) { Error("" . $_GET['error'] . ""); }else{ ?>
  8. <center><form action='?do=register' method='POST'>
  9. <b>Username:</b><br />
  10. <input type="text" name="user" value="" onfocus="this.value='';">
  11. <br />
  12. <b>Password:</b><br />
  13. <input type="password" name="password" value="" onfocus="this.value='';">
  14. <br />
  15. Classic:
  16. <input type="radio" name="flags" value="0">
  17. <br />
  18. Burning Crusade:
  19. <input type="radio" name="flags" value="8">
  20. <br />
  21. Wotlk:
  22. <input type="radio" name="flags" value="24">
  23.  
  24. <br />
  25. <br />
  26.  
  27. <input type="submit" value="Register"></td></tr></table>
  28. <br />
  29. <br />
  30. <?php echo $message; ?>
  31. </form>
  32. </center>
  33. <?php } ?>
  34. </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement