Previously, with select tag, user has to go through the whole list and select their username. Since it's not a very pleasant user experience, I've replaced it with <datalist> tag. With this, user can type and filter their name from the list.
Also, I've added a validation that checks when the user enters a name that's not in the list.
Previously, with select tag, user has to go through the whole list and select their username. Since it's not a very pleasant user experience, I've replaced it with
<datalist>
tag. With this, user can type and filter their name from the list.Also, I've added a validation that checks when the user enters a name that's not in the list.