Specifying the `type` attribute of a form element is important for the browser to know what kind of data it should expect. If the `type` is not specified, the browser will default to `text`.
Give the first two `input` elements a `type` attribute of `text`, the third a `type` attribute of `email`, and the fourth a `type` attribute of `password`.
The `email` type only allows emails with a `@` and a `.` in the domain.
The `password` type obscures the input, and warns if the site does not use HTTPS.
# --hints--
You should give the first `input` element a `type` attribute of `text`.