JSFiddle - React, Tailwind, and code Playground

by azhari

HTML

<form>
  Nama : <input type="text" required="required" /><br />
  Nama Kecil : <input type="text" required /><br />
  Email 1 : <input type="email" required /><br />
  Email 2 : <input pattern="/^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$/" required /> <br />
  Link : <input type="url" required /><br /> 
  No. Telepon: <input type="tel" required /><br /> 
  Tanggal Lahir : <input type="date" required /><br /> 
  <input type="submit" value="Submit now" />
</form>