HTML5 Form Types – Newer Available Fields

Slides:



Advertisements
Similar presentations
Sign Up / Create a New Account
Advertisements

MS-Access XP Lesson 1. Introduction to MS-Access Database Management System Software (DBMS) Store data in databases Database is a collection of table.
The New Employee Self-Service (for non-SBBC employees) Non-SBBC employees are defined as:  Broward Charter School employees  Broward retired personnel.
Tutorial 6 Creating a Web Form
Internet & World Wide Web How to Program, 5/e Copyright © Pearson, Inc All Rights Reserved.
Internet & World Wide Web How to Program, 5/e Copyright © Pearson, Inc All Rights Reserved.
Ch3: Introduction to HTML5 part 2 Dr. Abdullah Almutairi ISC 340 Fall 2014.
CHAPTER 30 THE HTML 5 FORMS PROCESSING. LEARNING OBJECTIVES What the three form elements are How to use the HTML 5 tag to specify a list of words’ form.
HTML Advanced: HTML 5. Welcome This slideshow presentation is designed to introduce you to HTML 5. It is the third of three HTML workshops available at.
  Just another way to collect pieces together (like div, section)  Anything can be in there  Formatting just like all other elements.
User Interface Design using jQuery Mobile CIS 136 Building Mobile Apps 1.
Form Handling, Validation and Functions. Form Handling Forms are a graphical user interfaces (GUIs) that enables the interaction between users and servers.
HTML 5 Tutorial Chapter 9 Form Attributes. New Form Attributes HTML5 has several new elements and attributes for forms. New form attributes : autocomplete.
Internet & World Wide Web How to Program, 5/e Copyright © Pearson, Inc All Rights Reserved.
Dr Walid M. Aly Illuminating Computer Science CCIT 4-6Sep 1.
Neal Stublen Improvements  New form elements  Assist with validation  Consistency across sites  Changes reduce the need for common.
© 2004 – 2014 Web Site Optimizers, LLC 1 HTML5 Forms Make Life Easy For Your Mobile Users Tom Bowen President Web Site
CHAP 3. FORM API.  Forms should still be encapsulated in a element where the basic submission attributes are set.  Forms still send the values of the.
HTML Advanced: HTML 5. Introduction to HTML 5 These slides are based on source material found at the w3schools.com website.
Borrow a Kindle book with the Kindle Fire.  Kindle Fire  Library Card Number  Connection to internet  Amazon login and password.
HTML Forms.
  Just another way to collect pieces together (like div, section)  Anything can be in there  Formatting just like all other elements  Always name.
HTML Forms. Slide 2 Forms (Introduction) The purpose of input forms Organizing forms with a and Using different element types to get user input A brief.
Internet & World Wide Web How to Program, 5/e. Copyright © Pearson, Inc All Rights Reserved.2 Revised by Dr. T. Tran for CSI3140.
Copyright © Terry Felke-Morris HTML5: TEXT BOX Accepts text information in address format Common Attributes: ◦ type=“ ” ◦ name ◦ id ◦
HTML Forms Forms, Controls, Fields, Inputs, Submission, Validation SoftUni Team Technical Trainers Software University
Unit 10 – JavaScript Validation Instructor: Brent Presley.
HTML5 Forms Forms are used to capture user input …
HTML 5 Form elements Basharat Mahmood, Department of Computer Science,CIIT,Islamabad, Pakistan. 1.
1 CA202 Spreadsheet Application Focusing on Specific Data using Filters Lecture # 5.
Tutorial 6 Creating a Web Form
GSE Web Mail User Guide ICT Directorate Table of Contents How to Logon Opening View Navigation Mail Contacts Calendar 2.
BeeSpoke User Delivery Ryan Bibby. System Functions  Main Menu  New Resource  Loan Resource  Return Resource  Reminders Report  Usage Report  New.
INTRODUCTION TO HTML5 HTML5 Form Input. Create a Number Input Type  You can use the number input type to restrict input fields to numeric values only.
HTML 5 Tutorial Chapter 7 Input Type. New Input Type HTML5 has several new input types for forms. These new features allow for better input control and.
HTML Advanced: HTML 5 With Adaptations by Dilvan Moreira.
Creating and Processing Web Forms
HTML CS 4640 Programming Languages for Web Applications
JavaScript, Sixth Edition
Compatible with the latest browsers; Chrome, Safari, Firefox, Opera and Internet Explorer 9 and above.
Unit & District Tools Phase 1
HTML 5.
>> Introduction to HTML: Forms
CIIT-Human Computer Interaction-CSC456-Fall-2015-Mr
Analyzing Table Data.
Quiz # 02 Design a data type Date to hold date
System Design Ashima Wadhwa.
Hourly Time Capture & Review
Unit 16 – Database Systems
Services Course 9/11/2018 5:45 PM Services Course Windows Live Messenger Participant Guide © 2008 Microsoft Corporation. All rights reserved.
Validation Bury College.
Chapter 3 Introduction to HTML5: Part 2
Forms and Form Controls
IS333: MULTI-TIER APPLICATION DEVELOPMENT
Objectives Explore web forms Work with form servers
Web Systems Development (CSC-215)
Password Reset Instructions
Granting support access for individuals to Bill to IDs
Forms, cont’d.
JavaScript Form Validation
New Form Input Types.
New Form Elements and Attributes
Two methods to observe tutorial
Introduction to Medisoft
Two methods to observe tutorial
Usability and Accessibility Implications of Various Date Picker Methods Andrew Downie.
ESeries Widgets Justin Kishbaugh.
Training Document Accessing Reports in VinCENT.
Murach's JavaScript and jQuery (3rd Ed.)
HTML CS 4640 Programming Languages for Web Applications
Presentation transcript:

HTML5 Form Types – Newer Available Fields May or may not work in older browsers HTML5

Input Types

Email Value automatically validated when form submitted Some mobile devices change on-screen keyboard to add @ and .com options This is beyond the scope of what we will do in this course – but validation of form input is important in ensuring the safe and accurate collection of data from forms. Validation in this case means ensuring the email is in appropriate email format

URL Value automatically validated when form submitted Mobile - changes on-screen keyboard to add .com options

Number Can set restrictions on number accepted Legal Range Legal Range User may type number or use arrows to select values within range. If submit invalid, get message User may type number or use arrows to select values within range. If submit invalid, get message

Range Value from range of numbers Displayed as a slider bar Internet Explorer Value from range of numbers Displayed as a slider bar Chrome

Attributes for Number and Range

Date Pickers Variations based on part of date you want Defaults to current date and time Use arrows to change or type value Validates to ensure real date Some variations shown next

Date (general) min and max can be set for dates – use format “yyyy-mm-dd” for the values

Month

Time

Dates with Min/Max Attribute names: Values must take the format: “yyyy-mm-dd” Where yyyy is a 4-digit year mm is a 2-digit month dd is a 2-digit representation of day Example: <input type=“date” min=“1978-07-14” /> Would only accept dates on or after July 14, 1978

Placeholder Attribute Places a “ghost” light gray example of what to enter in the box can be used with anything that is textual type input