Implement post form action without the need of exposing the 'full' path?

Is there a way to implement a http post form action without 
the need ofexposing the full path? 
i.e.
FORM
https://xyz.app.n8n.cloud/webhook/438331b5-f5b5-462d-b5d6-dbfc42b44666/login
TO
/login

<form action="https://xyz.app.n8n.cloud/webhook/438331b5-f5b5-462d-b5d6-dbfc42b44666/login" method="POST">
        <div class="form-group">
            <label for="email">Email:</label>
            <input type="text" id="email" name="email" required="">
        </div>
        <div class="form-group">
            <label for="password">Password:</label>
            <input type="password" id="password" name="password" required="">
        </div>
        <div class="form-group">
            <input type="submit" value="Login">
        </div>
    </form>
Email:
Password:

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.