Advertisement
msyukron

node js - sample form which included in nodejs file

May 1st, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.63 KB | None | 0 0
  1. <!--
  2. By: facebook.com/muhammad.sukron.52
  3. sample form which included to nodejs file
  4. -->
  5.  
  6. <!DOCTYPE html>
  7. <html lang="en">
  8. <head>
  9.     <meta charset="UTF-8">
  10.     <title>Form</title>
  11. </head>
  12. <body>
  13. <form action="" method="post" enctype="multipart/form-data">
  14.     <table>
  15.         <tr>
  16.             <td><input type="text" name="username" placeholder="Username"></td>
  17.         </tr>
  18.         <tr>
  19.             <td><input type="email" name="email" placeholder="Email"></td>
  20.         </tr>
  21.         <tr>
  22.             <td><input type="file" name="image" placeholder="Image"></td>
  23.         </tr>
  24.         <tr>
  25.             <td colspan="2"><button type="submit">Submit</button></td>
  26.         </tr>
  27.     </table>
  28. </form>
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement