Advertisement
Guest User

Untitled

a guest
Aug 10th, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.35 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Perfect World - Registration</title>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
  7. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  8. <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
  9. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
  10. </head>
  11. <body style="background-color:#dedede;">
  12. <div class="container">
  13. <div align="center">
  14. <h2>Registration</h2>
  15. </div>
  16. <hr>
  17. <form method="post" action="/registration2.php">
  18. <div class="form-group">
  19. <label for="username">Username:</label>
  20. <input type="text" class="form-control" id="username" name="username" required minlength="4" maxlength="16">
  21. </div>
  22. <div class="form-group">
  23. <label for="email">Email address:</label>
  24. <input type="email" class="form-control" id="email" name="email" required minlength="4" maxlength="30">
  25. </div>
  26. <div class="form-group">
  27. <label for="pwd">Password:</label>
  28. <input type="password" class="form-control" id="pwd" name="pwd" required minlength="4" maxlength="16">
  29. </div>
  30. <div class="form-group">
  31. <label for="fname">Full Name:</label>
  32. <input type="text" class="form-control" id="fname" name="fname" required minlength="4" maxlength="16">
  33. </div>
  34. <div class="form-group">
  35. <label for="country" required>Country:</label>
  36. <select class="form-control" id="country" name="country">
  37. <option disabled>-- Choose --</option>
  38. <option>Serbia</option>
  39. <option>Slovenia</option>
  40. <option>UK</option>
  41. <option>Germany</option>
  42. <option>USA</option>
  43. <option>Belgium</option>
  44. </select>
  45. </div>
  46. <div class="form-group">
  47. <label for="role">Role:</label>
  48. <select class="form-control" id="role" name="role" required>
  49. <option disabled>-- Choose --</option>
  50. <option>Songwriter</option>
  51. <option>Producer</option>
  52. <option>Singer</option>
  53. <option>Instrument player</option>
  54. <option>Dancer</option>
  55. </select>
  56. </div>
  57. <button type="submit" class="btn btn-primary">Submit</button>
  58. </form>
  59. </div>
  60. <hr>
  61. <div align="center">
  62. <a href="/login.php">Login here!</a>
  63. </div>
  64. </body>
  65. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement