Advertisement
Guest User

Untitled

a guest
Jun 10th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 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="background-image:url(<?php include ('configs.php'); echo $image ?>);font-family:arial;font-size:15px;color:<?php echo $textcolor ?>;"><?php if($_GET['do'] == "register") { Register(); }elseif($_GET['error']) { Error("" . $_GET['error'] . ""); }else{ ?>
  8. <div id="main">
  9. <center><form action='?do=register' method='POST'>
  10. <br />
  11. <h2 style="color:<?php echo $headercolor ?>;">Register Account!</h2>
  12. <b>Username:</b><br />
  13. <input type="text" name="user" value="" onfocus="this.value='';">
  14. <br />
  15. <b>Password:</b><br />
  16. <input type="password" name="password" value="" onfocus="this.value='';">
  17. <br />
  18. <div id="radio">
  19. <input type="radio" name="flags" value="0">
  20. Classic
  21. <br />
  22. <input type="radio" name="flags" value="8">
  23. Burning Crusade
  24. <br />
  25. <input type="radio" name="flags" value="24">
  26. Wotlk
  27. </div>
  28. <br />
  29. <input type="submit" value="Register"></td></tr></table>
  30. </div>
  31. <br />
  32. <br />
  33. <div id="extra">
  34. <br />
  35. </form>
  36. <div id="footer">
  37. <b><font size="5" color="red">© 2010 DezeServerEnzo</font></b>
  38. </div>
  39. </center>
  40. <?php } ?>
  41. </span>
  42. </body>
  43. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement