Form field validation and error messages

Assignment Help JAVA Programming
Reference no: EM132430570

Form Field Validation and Error Messages

Overview

You have created a basic form and added interactivity to images using JavaScript. Now it is time to validate information entered into your form fields. You will use the "registration.html" file found in your Zip file. You will see that the page has a form with the following fields to allow users to register for an account. The items in parentheses are defined formatting instructions to be observed for each field.

  • Username* (must only contain letters and numbers)
  • Password* (minimum of 8 characters)
  • PasswordVerify* (minimum of 8 characters, must match password)
  • FirstName* (text string)
  • LastName* (text string)
  • Email (uses [email protected] format)
  • PhoneNumber (uses (xxx) xxx-xxxx format)
  • SignUpNewsletter (radio box for yes/no)

Directions

Read the assignment overview.

Use the registration.html file to add functionality to the form found on the page. The JavaScript that you write should validate each field and, if errors are made, display appropriate error messages that direct the user to complete the form properly. Once the form is completed, your script should open the confirmation page (confirmation.php).

Note: The input fields in the form with an asterisk are required fields.

Make sure to do the following:

  • JavaScript that defines that a field is required and generates an appropriate error message if the field has not been completed.
  • JavaScript to validate all input fields per the formatting definitions that the field values should be checked against (found in the overview) after each field.
  • JavaScript that displays an appropriate error correction message (next to the field) in the event a form entry error has been made.
  • JavaScript that will default the user's cursor to the first erroneous input field in the event that there is an input error.
  • Submit button that executes the validation when submitted.
  • Once completed, view your pages in each of your two selected Web browsers to see if the content renders appropriately and consistently within each. Next, verify that your code is error free using the appropriate browser specific development tool found in the Resources.
  • Take a screen capture of each of your validation results and save it for submission.

Below is the html code;

registration.html........

<!DOCTYPE html>

<html lang="en-US">

<head>

<title>Invitation Page</title>

<link rel="stylesheet" type="text/css" href="css/main.css" />

</head>

<body>

<header>

<div class="top">

<a class="logo" href="index.html">CapellaVolunteers<span class="dotcom">.org</span></a>

</div>

<nav>

<ul class="topnav">

<li><a href="index.html">Home</a>

</li>

<li><a href="invitation.html">Invitation</a>

</li>

           <li><a href="volunteer.html">Volunteers</a>

</li>

<li><a href="gallery.html">Gallery</a>

</li>

<li><a href="registration.html" class="active">Registration</a>

</li>

</ul>

</nav>

</header>

<section id="pageForm">

<form action="#">

<label for="userName">Username:</label>

<input type="text" name="userName" placeholder="Enter your Username" />

<label for="Password">Password:

</label>

<input type="password" name="password" placeholder="Enter your Password" />

<label for="passwordVerify">Verify your Password:

</label>

<input type="password" name="passwordVerify" placeholder="Enter in your Password again" />

<label for="firstName">First Name:

</label>

<input type="text" name="firstName" placeholder="Enter your First Name" />

<label for="hostName">Last Name:

</label>

<input type="text" name="lastName" placeholder="Enter your Last Name" />

<label for="email">Email:

</label>

<input type="text" name="email" placeholder="Enter your Email Address" />

        <label for="phoneNumber">Phone Number

</label>

<input type="text" name="lastName" placeholder="Enter your Phone Number" />

        <label for="signUpNewsletter">Sign up for newsletter:

</label>

        <input type="radio" name="signUpNewsletter" value="Yes" checked> Yes

           <input type="radio" name="signUpNewsletter" value="No"> No

<input type="submit" value="Next step">

</form>

</section>

<footer>This events site is for IT3515 tasks.

</footer>

</body>

</html>

Kindly include the console.log(); in other to check the developer tool console.

Reference no: EM132430570

Questions Cloud

Provide a method definition for the setred method : In the Rgb class, provide a method definition for the setRed method such that setRed can be called as part of a method-call chain.
How do the four components of culture : What does your chosen theorist say about the role of culture in shaping human behavior?How do the four components of culture?
Program that tracks goldfish stored in fish tanks : Implement a program that tracks goldfish stored in fish tanks. The FishTank class includes:
Design an application for the sublime sandwich shop : Design an application for the Sublime Sandwich Shop. The user makes sandwich order choices from list boxes, and the application displays the price.
Form field validation and error messages : You have created a basic form and added interactivity to images using JavaScript. Now it is time to validate information entered into your form fields
Write the pseudocode that uses two arrays : Selection sort is best understood by imagining that you have two lists, Aand B. Initially, we have list A, containing all the unsorted elements
Explain ways addiction impacts physical well being of client : explain how gender might influence the physical, emotional, and spiritual well being of clients with problems.Explain ways addiction impacts physical well being
Improve the performance of program : In a Java program that used a sequential file, how or why would would using either a random access or index sequential file improve the performance
Provide a standard three-parameter constructor : Provide a standard three-parameter constructor for a class named CellPhone. The class contains three instance variables-manufacturer, model, and price

Reviews

Write a Review

JAVA Programming Questions & Answers

  Write a java program with the given functionalities

Write a Java program with the following functionalities: It should use a one-dimensional array. It should enable the user to search for an element in the array

  Implement the dynamic programming algorithm

Implement the dynamic programming algorithm for the optimal binary search tree problem

  Develop java program using arrays

Critical part of any system. In this lesson, a Graphical User Interface (GUI) is created. The code generated will link the components to the action.

  Demonstrate our ability to control strings

Demonstrate our ability to control strings and use methods - which appends an exclamation point to the end of a string

  Build the gui layout of the gamecreate a class called

build the gui layout of the gamecreate a class called pipegameapp.java which will be the main game user interface. the

  Write the class header for my color applet

Write the class header for My Color Applet. Remember to extend the Applet class. Include an opening brace for the class.

  Write the output to a file with that user-supplied name

Create a program called CalcWeightedAvgWithExceptions, and use try-catch-finally blocks - write the output to a file with that user-supplied name

  Create a java class named headphone

Create a Java class named HeadPhone to represent a headphone set. The class contains: ? Three constants named LOW, MEDIUM and HIGH with values of 1, 2 and 3 to denote the headphone volume.

  Using the following data definition classpublic class

using the following data definition classpublic class circle private int radiuspublic circleint r radius rpublic int

  To report the amount of the fine

To report the amount of the fine, which is $25 for the first hour or pan of an hour that the car is illegally parked, plus $10 for every additional hour or part of an hour that the car is illegally parked

  What would the code look like for a java program

What would the code look like for a java program that computes the average of those three doubles

  Create a class named blooddata that includes fields

Create a class named BloodData that includes fields that hold a blood type (the four blood types are O, A, B, and AB) and an Rh factor (the factors are + and -). Create a default constructor that sets the fields to "O" and "+", and an overloaded c..

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd