Guest User

Untitled

a guest
Feb 13th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. html
  2. head
  3. title= title
  4. body
  5. h1= message
  6. form(method="get" action="/foo")
  7. button(type="submit") run foo
  8.  
  9. app.get('/foo', function(req, res) {
  10. console.log("Its come here");
  11. res.render('index', { title: 'hello', message: 'hello' });
  12. });
Add Comment
Please, Sign In to add comment