Skip to content

Instantly share code, notes, and snippets.

@maisonm
Last active May 25, 2018 04:03
Show Gist options
  • Save maisonm/dad9d2b0cd3cadb84bdbd8ebda1007dc to your computer and use it in GitHub Desktop.
Save maisonm/dad9d2b0cd3cadb84bdbd8ebda1007dc to your computer and use it in GitHub Desktop.
let zipcode;
app.post('/search-location', (req, res) => {
zipcode = req.body.zipcode;
if(!zipcode || zipcode.length < 5 || zipcode.length > 5) {
res.redirect('/error');
} else {
res.redirect('/current-weather');
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment