Advertisement
joaopaulofcc

Untitled

Sep 15th, 2021
1,220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.44 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <title>Colaborador</title>
  5.         <meta charset="utf-8">
  6.        
  7.         <script src="./scripts/jquery-3.5.1.js"></script>
  8.         <script src="./scripts/colaborador/cadastro.js"></script>
  9.         <script src="./scripts/colaborador/grid.js"></script>
  10.     </head>
  11.    
  12.     <body>
  13.         <form name="formulario">
  14.             <p>
  15.                 <label>Nome:</label>
  16.                 <input id="nome" type="text">
  17.             </p>
  18.  
  19.             <p>
  20.                 <label>Salário (R$):</label>
  21.                 <input id="salario" type="number">
  22.             </p>
  23.  
  24.             <p>
  25.                 <label>Cargo:</label>
  26.                 <select id="cargo">
  27.                     <option value="0">Selecione o cargo...</option>
  28.                 </select>
  29.             </p>
  30.    
  31.             <p>
  32.                 <button id="salvar" type="button">Salvar</button>
  33.             </p>
  34.  
  35.             <hr>
  36.  
  37.             <p>
  38.                 <label>Colaboradores Cadastrados</label>
  39.                 <table>
  40.                     <thead>
  41.                         <tr>
  42.                             <th>ID</th>
  43.                             <th>NOME</th>
  44.                             <th>SALARIO</th>
  45.                         </tr>
  46.                     </thead>
  47.                     <tbody id="grid">
  48.  
  49.                     </tbody>
  50.                 </table>
  51.             </p>
  52.         </form>
  53.     </body>
  54. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement