Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>Registration Form</title>
- <link rel="stylesheet" type="text/css" href="st.css">
- <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>
- <script src="jv.js"></script>
- </head>
- <body>
- <div class="container">
- <form class="form" method="post" action="#">
- <h2>Create Registration Form Using jQuery</h2>
- <label>Name :</label>
- <input type="text" name="dname" id="name">
- <label>Email :</label>
- <input type="text" name="demail" id="email">
- <label>Password :</label>
- <input type="password" name="password" id="password">
- <label>Confirm Password :</label>
- <input type="password" name="cpassword" id="cpassword">
- <input type="button" name="register" id="register" value="Register">
- </form>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement