Advertisement
myatoo

Assessment2

Nov 29th, 2020
1,003
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.41 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en" dir="ltr">
  3.   <head>
  4.     <meta charset="utf-8">
  5.     <title>Assessment 2</title>
  6.   </head>
  7.   <body>
  8.     <h1>Course Sign Up Page</h1>
  9.     <p>Please Note: First Name, Last Name, Password, and Email are required</p>
  10.  
  11.     <form class="" action="ThankYou.html" method="get">
  12.       <label for="firstName">First Name:</label>
  13.       <input id="firstName" type="text" name="firstName" value="" placeholder="First Name" required>
  14.       <label for="lastName">Last Name:</label>
  15.       <input id="lastName" type="text" name="lastName" value="" placeholder="Last Name" required>
  16.       <br><br>
  17.       <label for="email">Email:</label>
  18.       <input id="email" type="email" name="email" value="" placeholder="name@email.com" required>
  19.       <label for="password">Password:</label>
  20.       <input id="password" type="password" name="" value="" required>
  21.  
  22.       <p>Are you over the age of 18?</p>
  23.       <label for="ageOver">Yes:</label>
  24.       <input type="radio" name="age" value="Yes">
  25.       <label for="ageUnder">No:</label>
  26.       <input type="radio" name="age" value="No">
  27.  
  28.       <p>Do you have a Credit Card or Paypal?</p>
  29.       <select class="" name="paymentMethod">
  30.         <option value="Credit Card">Credit Card</option>
  31.         <option value="Paypal">Paypal</option>
  32.       </select>
  33.       <br><br>
  34.  
  35.       <input type="submit" name="submit" value="Sign Up">
  36.     </form>
  37.   </body>
  38. </html>
  39.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement