﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
22538	Support for HTML5 Date and Time input fields	me@…	nobody	"By default, the input_type of fields of type DateInput, DateTimeInput, TimeInput in the file django/forms/widgets.py is ""text"". This is because these fields inherit from TextField class which has input_type = ""text"".

If we change the input_type in each of the classes to their HTML5 specified equivalent, forms will be better.



{{{
...
class DateInput(TextInput):
     input_type = ""date""
...

...
class DateTimeInput(TextInput):
     input_type = ""datetime""
...

...
class TimeInput(TextInput):
     input_type = ""time""
...
}}}"	Uncategorized	closed	Forms	1.6	Normal	duplicate		W. Trevor King	Unreviewed	0	0	0	0	1	0
