Presentation is loading. Please wait.

Presentation is loading. Please wait.

LESSON 10 UNIT K FORMS. WHY FORMS? Free-form – input that is unstructured and does not limit choices. For example, lets say you ask clients to e-mail.

Similar presentations


Presentation on theme: "LESSON 10 UNIT K FORMS. WHY FORMS? Free-form – input that is unstructured and does not limit choices. For example, lets say you ask clients to e-mail."— Presentation transcript:

1 LESSON 10 UNIT K FORMS

2 WHY FORMS? Free-form – input that is unstructured and does not limit choices. For example, lets say you ask clients to e-mail you the information about your pet so that your can book the pet a spot in the kennel. E-mail number 1 - Bowser is a five year old grey and white female and weighs about 13 pounds. Bowser will be staying 3 days starting next Friday. E-mail number 2 - Bubba is our family dog. Bubba is a very gentle brown Labrador Retriever. Lately Bubba has had some medical problems but it should not be during the stay on the upcoming holiday weekend. Do you know the gender, type of animal, status of shots or even exactly which days and nights the animal will be at the kennel? 2

3 FORM ADVANTAGES User does the work. Can require information Can limit choices Can validate input Can give default values Can put information into discrete pieces – “chunks” 2201989 Birthdate 02 20 1989 Better 6025551234 Phone number 602 555 1234 Better PatJones 3

4 WHICH IS BETTER? Which is better a persons age or their date of birth? ANSWER: Date of birth because it does not change and age can be calculated. Derived data - data value can be computed based upon other data. More accurate. Why? 4

5 WHERE TO START? What is the purpose of the form? How will the information be used? What type of data? Yes/no, numbers to what decimal, abbreviations, codes How discreet? First name, initial, last name Break down into multiple has advantages and disadvantages. Talk to the users if possible. 5

6 WHERE TO START? Design on paper first. Put a title on the form Place a unique identifier of the form (usually in top right corner or in the footer). Provide instructions and explanations. Every input should have a label. 6

7 WHERE TO START? Put related fields together. Order should be what users expect. Logical flow left  right top V bottom Place a field for questions or comments at the bottom of the form. 7

8 FORM ESSENTIALS Define the form with form tags Your entire form MUST be within the form tags! Add input controls – they all must be within the form tags. Add action buttons – at bottom of form before the end form tag. 8

9 Without css 9

10 With css 10

11 FIELDSET – Group of form elements LABEL – Descriptive text LEGEND – Descriptive title for a fieldset How many fieldsets in the following code? Within contactinfo, what is the first legend and what is the first label? 11

12 INPUT CONTROLS - TEXTFIELD Type is text for the first input, type is email for the second input name= is crucial for input id= is crucial for css Placeholder gives direction 12

13 INPUT FROM A FORM What is submit is the name attribute of a field with the associated value. 13

14 HOW DOES A TEXTFIELD GET ITS SIZE? In the css file #nameinput, #emailinput {width: 30em; maxlength: 60} #phoneinput {width: 12em; } 14

15 INPUT CONTROLS - CHECKBOXES Why is value crucial? 15

16 INPUT CONTROLS – OPTION BUTTONS In order for buttons to work, each group MUST use the same value for name. Checked indicates the default. 16

17 SUPPOSE YOU WANTED TO KNOW WHAT COUNTY THEY LIVE IN. How many counties in Arizona? 15 Which state has the fewest counties? Alaska has 8 and Hawaii has only 5 But the trick answer is Louisiana has zero counties and 64 parishes Which state has the most counties? Texas has 254 Use Drop down menu for a selection of one from many. Limits choices and controls input. 17

18 SUPPOSE YOU WANTED TO KNOW WHAT COUNTY THEY LIVE IN. 18

19 INPUT CONTROLS PROVIDE A VARIETY OF INPUT TECHNIQUES. 19

20 ADDITIONAL INPUTS Textarea – multi-column text area. 20

21 ADDITION ITEMS 21

22 ADDITION ITEM REQUIRING INPUT. New attribute in HTML5 Can be done with a script – javascript. Contact Information Name 22

23 EVEN MORE ADDITIONAL ITEMS 23

24 <input type="submit" id="submit“ value="Add to Cart" /> ACTION BUTTONS 24

25 MORE ABOUT BUTTONS On the begin form tag you can indicate an action and a method for how the form is submitted. 25

26 SUBMIT BUTTON “ action ” attribute used to specify name and location of script that will accept form data “ method ” attribute used to indicate how data should be submitted On the form tag you might have: or 26

27 27

28 28


Download ppt "LESSON 10 UNIT K FORMS. WHY FORMS? Free-form – input that is unstructured and does not limit choices. For example, lets say you ask clients to e-mail."

Similar presentations


Ads by Google