﻿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
14883	"EmailField should be of type=""email"""	paulc	nobody	"I looked around so I hope this isn't a dupe.

With HTML 5 out, EmailField should use an input of type=""email"" by default. That would be as simple as defining an EmailWidget, like so:

{{{
class EmailWidget(forms.widgets.Input):
    input_type = 'email'
}}}

And then making EmailField use it:

{{{
class EmailField(CharField):
    widget = EmailWidget
    # rest of code...
}}}
"		closed	Forms	dev		duplicate			Unreviewed	0	0	0	0	0	0
