cancel
Showing results for 
Search instead for 
Did you mean: 
Important updates from Zoom Support:
  • Starting February 3, 2025, Zoom Phone customers must add their phone numbers to an approved 10DLC campaign in order to use SMS/MMS capabilities on their numbers.

  • Introducing more live support options! More Zoom customers now have access to live agent chat support. Sign in and visit our Contact Support page to see all your available support options. We’re here to help!

Zoom Apps

Sumit143
Explorer
Explorer

Hi  Team,

  I am unable to send a post request to my zoom apps. I am trying to create a login page but my login page submit button not hit my login end point please help .

 

// My code is 

html(lang='en')
block login
    form(id="login" action="auth/login" method="post")
        input(type="text", name="email", value="", placeholder="Username")
        br
        input(type="password", name="password", value="", placeholder="Password")
        br
        input(type="submit" value="Submit")
 
 
/* Routing */
app.use('/', indexRoutes);
app.use('/auth', authRoutes);
 
router.post('/login', async (req, res, next) => {
    console.log('login');
    try {
        const authData = await authService.loginUser(req.body);
        res.render('dashboard');
    } catch (err) {
        next(handleError(err));
    }
});

 

 

Thanks & Regards

 

Sumit Pathak

Spoiler
 

 

 

1 REPLY 1

Bort
Zoom Employee
Zoom Employee

Hi @Sumit143 

Unfortunately, the Community Forum is likely not the best suited to handle such a question, but we do have the DevForum, for questions exactly like this.