Advertisement
CR7CR7

Registration-Form

Sep 4th, 2023
1,087
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.44 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5.     <meta charset="UTF-8">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.     <title>Race Registration Form</title>
  8.     <style>
  9.         body {
  10.             font-family: sans-serif;
  11.         }
  12.  
  13.         h2 {
  14.             text-align: center;
  15.         }
  16.  
  17.         form {
  18.             width: 50%;
  19.             margin: 0 auto;
  20.             padding: 20px;
  21.             border: 1px solid #ccc;
  22.         }
  23.  
  24.         label {
  25.             display: block;
  26.             margin-bottom: 10px;
  27.         }
  28.  
  29.         input, select {
  30.             width: 100%;
  31.             padding: 10px;
  32.             border: 1px solid #ccc;
  33.         }
  34.  
  35.         button {
  36.             width: 100%;
  37.             padding: 10px;
  38.             margin-top: 20px;
  39.             border: none;
  40.             background-color: #000;
  41.             color: #fff;
  42.             cursor: pointer;
  43.         }
  44.     </style>
  45. </head>
  46.  
  47. <body>
  48.     <h2>Race Registration!</h2>
  49.     <form action="/registration">
  50.         <div>
  51.             <label for="fname">First Name
  52.                 <input type="text" id="fname" name="fname" required>
  53.             </label>
  54.             <label for="lname">Last Name
  55.                 <input type="text" id="lname" name="lname" required>
  56.             </label>
  57.         </div>
  58.         <p>Select a Race</p>
  59.         <div>
  60.             <input type="radio" id="fun_run" name="race" value="fun_run"> Fun Run 5K
  61.             <input type="radio" id="hmarathon" name="race" value="hmarathon"> Half Marathon
  62.             <input type="radio" id="fmarathon" name="race" value="fmarathon"> Full Marathon
  63.         </div>
  64.         <div>
  65.             <label for="email"> Email
  66.                 <input type="email" name="email" required>
  67.             </label>
  68.             <label for="password"> Password
  69.                 <input type="password" name="password" required minlength="6" maxlength="12">
  70.             </label>
  71.         </div>
  72.         <div>
  73.             <label for="age_group"> Select Age Group
  74.                 <select name="age_group" id="age_group">
  75.                     <option value="young">Under-18</option>
  76.                     <option value="yadult">18-30</option>
  77.                     <option value="adult">30-50</option>
  78.                     <option value="senior">50+</option>
  79.                 </select>
  80.             </label>
  81.         </div>
  82.         <button type="submit">Register!</button>
  83.     </form>
  84. </body>
  85.  
  86. </html>
  87.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement