JSFiddle - React, Tailwind, and code Playground

by tonkec palonkec

HTML

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Button u formi</title>
</head>
<body>
  <form action="">
   <label for="email">Napiši svoj mail</label>
  <input type="email" id="email" name="email"><br><br>

  <label for="password">Utipkaj lozinku:</label>
  <input type="password" id="password" name="password">  <br />

  <input type="reset" value="Reset">
  <input type="submit" value="Pošalji">
  
  <button disabled> Klinki me </button>
  </form>
</body>
</html>