<!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Proveedores</title> <link rel="stylesheet" href="interpreteProveedores.css"> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> </head> <body> <div class="container2"> <h1>PROVEEDORES</h1> <label for="nit">NIT:</label> <input type="number" id="NIT"> <label for="">RAZON SOCIAL:</label> <input type="text" id="razonSocial"> <label for="email">CORREO ELECTRONICO:</label> <input type="email" id="email"> <button onclick="processData()">Registrar Datos</button> <div id="register" style="display:none; padding:20px;margin-top:20px;"></div> </div> <div id="toast2" class="toast2"></div> <script src="interprete.js"></script> </body> </html>