Advertisement
Guest User

Untitled

a guest
Jan 11th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html>
  4. <head>
  5. <title>Blogapp</title>
  6. <meta charset="UTF-8">
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8. </head>
  9. <body>
  10. <h1>Nuevo Post</h1>
  11. <form action="/add_post" method="POST">
  12. <div>
  13. Ingrese Nombre de Post:
  14. <input type="text" name="post_name" />
  15. </div>
  16. <div>
  17. Ingrese Descripcion:
  18. <textarea name="post_description"></textarea>
  19. </div>
  20. <div>
  21. Ingrese fecha:
  22. <input type="text" name="post_date" />
  23. </div>
  24. <input type="submit" value="Enviar" />
  25. </form>
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement