Sobes.tech
Junior — Senior

Form for creating and deleting a user

livecode

Task condition

Create a form containing input fields: name, age, email, role (dropdown list), and password. Add a button to delete the record.

<input placeholder="Name" />
<input placeholder="Age" />
<input placeholder="Email" />
<select>
  <option>User</option>
  <option>Admin</option>
</select>
<input placeholder="Password" />
<button></button>