JSFiddle - React, Tailwind, and code Playground

HTML

<form action="index.php" method="get">
    <span>nome</span>
    
    <input type="text" class ="verde" name="nome" />
   
    <br />
    <span>senha</span>
    <input type="password" name="senha" />
    <br />
    <input type="submit"  value="enviar" />
    </form>

 <button type="button"  value="enviar" onclick="faz(1);" />
 <button type="button"  value="enviar" onclick="faz(2);" />

CSS

.verde {
     color:green;

 }

JavaScript

function faz (tipo) {
    
    if (tipo == 1) {
        alert("isso é o seu nome ");
        
    }
    
    
    if(tipo ==2) {
        alert("isso é sua senha");
        
    }
    
    
    
}