Advertisement
rofelbca

regis...

Mar 13th, 2024 (edited)
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.98 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Registration Form</title>
  5.     <link rel="stylesheet" type="text/css" href="st.css">
  6.   <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js" integrity="sha512-v2CJ7UaYy4JwqLDIrZUI/4hqeoQieOmAZNXBeQyjo21dadnwR+8ZaIJVT8EE2iyI61OV8e6M8PP2/4hpQINQ/g==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
  7.     <script src="jv.js"></script>
  8. </head>
  9. <body>
  10.     <div class="container">
  11.         <form class="form" method="post" action="#">
  12.             <h2>Create Registration Form Using jQuery</h2>
  13.             <label>Name :</label>
  14.             <input type="text" name="dname" id="name">
  15.             <label>Email :</label>
  16.             <input type="text" name="demail" id="email">
  17.             <label>Password :</label>
  18.             <input type="password" name="password" id="password">
  19.             <label>Confirm Password :</label>
  20.             <input type="password" name="cpassword" id="cpassword">
  21.             <input type="button" name="register" id="register" value="Register">
  22.         </form>
  23.     </div>
  24.    
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement