Last active
May 25, 2018 04:03
-
-
Save maisonm/dad9d2b0cd3cadb84bdbd8ebda1007dc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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