FORMS
FAQ - Forms

FAQ - Shared Devices

3min
it's not too hard a situation to imagine you're logged in to a website, and you walk away from the pc someone comes along and starts using the same website if they submit a form, then it shouldn't update your crm record it should show them that you're still logged in they will then log out and create a new crm record this problem was initially reported here > https //roadmap siteglide com/bugs/p/forms overwriting crm records https //roadmap siteglide com/core platform/p/forms overwriting crm records after much discussion here's measures we've taken to make this easier to implement for you 1 how to show that someone is logged in our default form layout for new or updated forms will set both 'email' and 'name' as readonly, pre populated fields if there's a logged in user you can also add your own message on page like this {% if context exports is logged in data == true %} hi {{ session current user name }}! (not you?) {% endif %} 2 how to allow updating of existing user data essentially a 'user update' form if you look at the email and name fields in your new default layout, you'll see this {% if context exports is logged in data %} readonly value="{{ session current user name }}" {% endif %} either remove 'readonly' to allow editing, or remove the entire if statement if you also don't want it pre populated