I have one HTML
The form has only one action=\"\" attribute.
action=\"\"
However I wish to have two different target=\"\" attribu
target=\"\"
It is do-able on the server side.
Sign In Facebook
and in my node server side script
app.post('/', function(req, res) { if(req.body.signin == "email_signin"){ function(email_login) {...} } if(req.body.signin == "fb_signin"){ function(fb_login) {...} } });