Suumpmolk
Suumpmolk

Reputation: 23

Existing express email validation

I noticed that express has some sort of validation for email in forms. Can this be removed, or used for other input types as well? See picture.

https://i.sstatic.net/mgq2K.png

Upvotes: 0

Views: 69

Answers (1)

Mehdi
Mehdi

Reputation: 7413

This is html, not specific to express. You may use <input type="text"> instead of <input type="email">.

Read also: http://html5doctor.com/html5-forms-input-types/

Upvotes: 2

Related Questions