Guest User

Untitled

a guest
Jun 6th, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. <html>
  2. <head>
  3. <link rel="shortcut icon" href="favicon.ico" />
  4. <title>Registration</title>
  5. <meta
  6. name="description"
  7. content="Register here"
  8. />
  9. <meta name="keywords" content="register, play, game" />
  10.  
  11.  
  12. <style type="text/css">
  13. html,
  14. body {
  15. padding: 1;
  16. margin: 1;
  17. }
  18.  
  19. input {
  20. font-size: 16px;
  21. font-family: Helvetica, sans-serif;
  22. }
  23.  
  24. body {
  25. background-color: #66aacc;
  26. font-family: sans-serif, arial, helvetica;
  27. padding-bottom: 50px;
  28. }
  29.  
  30. .container {
  31. background-color: #ffffff;
  32. max-width: 600px;
  33. margin: 20px auto 0 auto;
  34. padding: 15px 20px 1px 20px;
  35. }
  36.  
  37. .form-row {
  38. padding: 10px 0;
  39. display: flex;
  40. }
  41.  
  42. .form-row label {
  43. padding-right: 10px;
  44. }
  45.  
  46. .form-row input {
  47. padding-right: 10px;
  48. flex: 1;
  49. }
  50. </style>
  51. </head>
  52. <body>
  53.  
  54. <h1>{{message}}</h1>
  55.  
  56.  
  57. <div class="container">
  58.  
  59. <form
  60. name="frmInfo"
  61. action="/register"
  62. method="post" >
  63.  
  64. <div class="form-row">
  65. <label for="username">Username: </label>
  66. <input type="text" id="username" name="username" />
  67. </div>
  68.  
  69.  
  70. <div class="form-row">
  71. <label for="password">Password:</label>
  72. <input type="text" id="password" name="password" />
  73. </div>
  74.  
  75. <!-- button for user to submit the form -->
  76. <div class="form-row">
  77. <button type="submit" id="register" value="register" />
  78. </div>
  79.  
  80.  
  81. </form>
  82.  
  83. </div>
  84.  
  85.  
  86. </body>
  87. </html>
Add Comment
Please, Sign In to add comment