# Collecting users' input Our user form, here, is modeled after a real-world scenario where: - A user fills out a form, and submits it with a button click - The button-click saves the user (see invoked function) - An **admin-rights-restricted** button, when clicked, triggers the profile creations (see invoked function) **User form and submission buttons sample** ```javascript return (
setUserEmail(e.target.value)} /> setUserCountry(e.target.value)} /> setUserCompany(e.target.value)} />
); ```