Advertisement
Guest User

CREATE

a guest
Mar 17th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. ---------CREATE-----
  2.  
  3. <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
  4. pageEncoding="ISO-8859-1"%>
  5. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  6. <html>
  7. <head>
  8. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
  9. <title>Insert title here</title>
  10. </head>
  11. <body>
  12. <form action="usuarioAction.jsp" method ="post">
  13. <table>
  14. <tr>
  15. <td> Nome Completo </td>
  16. <td> E-mail </td>
  17. <td> Telefone </td>
  18. <td> Data de Nascimento </td>
  19. <td> Endereço </td>
  20. <td> Área Desejada </td>
  21. <td> Idiomas e Nível </td>
  22. <td> Conhecimentos Técnicos e Nível </td>
  23. <td> Formação </td>
  24. <td> Experiência </td>
  25. <td> Remuneração Desejada </td>
  26. </tr>
  27. <tr>
  28. <td><input type= "text" name = "nome"></input></td>
  29. <td><input type= "text" name = "email"></input></td>
  30. <td><input type= "text" name = "telefone"></input></td>
  31. <td><input type= "text" name = "nascimento"></input></td>
  32. <td><input type= "text" name = "endereço"></input></td>
  33. <td><input type= "text" name = "area"></input></td>
  34. <td><input type= "text" name = "idiomas"></input></td>
  35. <td><input type= "text" name = "conhecimentos"></input></td>
  36. <td><input type= "text" name = "formaçao"></input></td>
  37. <td><input type= "text" name = "experiencia"></input></td>
  38. <td><input type= "text" name = "remuneraçao"></input></td>
  39. </tr>
  40.  
  41. </table>
  42. <input type ="submit" value ="Adicionar"></input>
  43. <a href= "index.jsp">Cancelar</a>
  44. </form>
  45. </body>
  46. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement