services.AddDefaultIdentity<IdentityUser>()
.AddRoles<IdentityRole>()
.AddDefaultUI(UIFramework.Bootstrap4)
.AddEntityFrameworkStores<ApplicationDbContext>();
.AddRoles<IdentityRole>()
<form asp-controller="Patients" asp-action="Details">
<select required onchange="this.form.submit()" name="screenData">
@for (int i = 0; i < @ViewBag.screenList.Count; i++) {
if (@ViewBag.screenList[i] == ViewBag.screenData) {
<option value="@ViewBag.screenList[i]" selected>@ViewBag.screenList[i]</option>
} else { <option value="@ViewBag.screenList[i]">@ViewBag.screenList[i]</option> }
}
</select>
</form>