Advertisement
myatoo

Form

Nov 29th, 2020
643
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.59 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en" dir="ltr">
  3.   <head>
  4.     <meta charset="utf-8">
  5.     <title>Form Tag</title>
  6.   </head>
  7.   <body>
  8.     <h1>Log In</h1>
  9.     <h2>Please enter email address and password.</h2>
  10.     <form class="" action="" method="get">
  11.       <input type="email" name="userEmail" value="" placeholder="Please Enter Your Email"><br>
  12.       <input type="password" name="userPassword" value="" placeholder="Please Enter Your Passowrd"><br>
  13.       <input type="color" name="colorInput" value=""><br>
  14.       <input type="submit" name="submit" value="Log In">
  15.     </form>
  16.   </body>
  17. </html>
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement