Create an HTML page with a Form validation using JSP. A HTML file and a JSP file
ID: 3667638 • Letter: C
Question
Create an HTML page with a Form validation using JSP. A HTML file and a JSP file is required.
The fields have the following properties:
- user first name (text)
- user last name (text)
- user username (text- no more than 10 character with validation)
- user password (password - at least 6 characters with validation)
- user retyped password (password)
- user address (text)
- user email (text – with validation)
- clear form button and a submit button
Functionality: when you press submit the form is validated for empty field.
Explanation / Answer
HTML CODE: J query: $('document').ready(function() { $("#registeration-form").validate({ rules: { firstname: "required", lastname: "required", email: { required: true, email: true }, password: { required: true, minlength: 8 address:{ required:true }, }, messages: { firstname: "Please enter your firstname", lastname: "Please enter your lastname", password: { required: "Please enter you password", minlength: " The password should atleast have 8 characters:”, }, email: "Please enter a valid email address" address:”Please enter your address” }, submitHandler: function(form) { form.submit(); } }); });Related Questions
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.