<form>
  Text
  <input type="text" />
  <br />
  Email
  <input type="email" />
  <br />
  Password
  <input type="password" />
  <br />
  Number
  <input type="number" min="0" max="5" />
  <br />
  Date Picker
  <input type="date" value="2018-07-22" min="2018-01-01" max="2018-12-31" />
  <br />
  Checkbox
  <input type="checkbox" checked />
</form>