Guest User

Untitled

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