Webflow does not natively support dynamic user_id inclusion in forms. However, you can achieve this using JavaScript and either Webflow Memberships (if enabled) or a third-party authentication system. Below are the recommended approaches.
1. Using Webflow Memberships (If Available)
- If you are using Webflow Memberships, the logged-in user’s
user-id
is available in JavaScript. - You can retrieve the
user-id
from Webflow’s window.Webflow.push
object and insert it as a hidden input in the form. - Example:
- Add a hidden input field to your Webflow form:
<input type="hidden" id="user-id" name="user_id">
- Add the following JavaScript inside an Embed Code block:
```js
document.addEventListener("DOMContentLoaded", () => {
const userIdInput = document.getElementById("user-id");
if (window.Webflow && window.Webflow.auth) {
const userId = window.Webflow.auth.user.id;
userIdInput.value = userId;
}
});
``` - This assigns the logged-in user’s ID automatically when they submit the form.
2. Using Custom Authentication (JWT or Session Storage)
If Webflow Memberships is not available, you can:
- Store user authentication details (e.g., JWT tokens) in localStorage or sessionStorage.
- Retrieve and inject the value into a hidden form field before submission.
Example:
- Assume a JWT stores
{ "user_id": "12345" }
:
```js
document.addEventListener("DOMContentLoaded", () => {
const userIdInput = document.getElementById("user-id");
const token = localStorage.getItem("auth_token"); // Retrieve stored token
if (token) {
const decodedToken = JSON.parse(atob(token.split('.')[1])); // Decode JWT
userIdInput.value = decodedToken.user_id; // Assign user_id to form field
}
});
```
If direct JavaScript manipulation is not ideal:
- Use Zapier or Make (Integromat) to capture form submissions.
- Include user data in Webflow CMS or a backend database.
- Connect Webflow to Google Sheets, Airtable, or Zapier’s database to associate file uploads with user data.
Summary
Webflow doesn’t natively support adding a logged-in user_id in forms, but you can:
- Use Webflow Memberships to insert the
user-id
. - Store authentication tokens in local/session storage, then retrieve and append the
user_id
dynamically. - Leverage third-party tools like Zapier to associate file uploads with user accounts.
Would you like code adjustments based on your authentication method?