Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. <div id="data">
  2. <section>
  3.  
  4. <label for="">Nome:</label>
  5. <br>
  6. <input type="text" id="nome" required>
  7. <br>
  8. <label for="">Sobrenome:</label>
  9. <br>
  10. <input type="text" id="sobrenome" required>
  11. <br>
  12. <label for="">Cargo:</label>
  13. <br>
  14. <select id="cargo">
  15. <option value="desenvolvedorFront">Desenvolvedor - Front-End</option>
  16. <option value="desenvolvedorBack">Desenvolvedor - Back-End</option>
  17. <option value="designerGrafico">Designer Gráfico</option>
  18. <option value="auditor">Auditor</option>
  19. <option value="analistaFinanceiro">Analísta Financeiro</option>
  20. </select>
  21. <br>
  22. <button id="confirmar" onclick="confirmaInputData()">Confirmar</button>
  23. <div id="outputData"></div>
  24. </section>
  25. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement