diff --git a/src/Identity/UI/src/Areas/Identity/Pages/V4/_Layout.cshtml b/src/Identity/UI/src/Areas/Identity/Pages/V4/_Layout.cshtml index f3af76940bdc1675e896c8b3acfb9118ed16b952..ca54b43f37705902fc3cd416b8eedd801f7f5ed5 100644 --- a/src/Identity/UI/src/Areas/Identity/Pages/V4/_Layout.cshtml +++ b/src/Identity/UI/src/Areas/Identity/Pages/V4/_Layout.cshtml @@ -3,7 +3,7 @@ @inject IWebHostEnvironment Environment @inject ICompositeViewEngine Engine <!DOCTYPE html> -<html> +<html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> diff --git a/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/ExternalLogin.cshtml b/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/ExternalLogin.cshtml index 9f7537451a187de08e120bd96dd2930fe8b5cc51..eb838fc767212eaa863b608ac0b7b4619a0c1347 100644 --- a/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/ExternalLogin.cshtml +++ b/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/ExternalLogin.cshtml @@ -17,7 +17,7 @@ <div class="row"> <div class="col-md-4"> <form asp-page-handler="Confirmation" asp-route-returnUrl="@Model.ReturnUrl" method="post"> - <div asp-validation-summary="ModelOnly" class="text-danger"></div> + <div asp-validation-summary="ModelOnly" class="text-danger" role="alert"></div> <div class="form-floating"> <input asp-for="Input.Email" class="form-control" autocomplete="email" /> <label asp-for="Input.Email" class="form-label"></label> diff --git a/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/ForgotPassword.cshtml b/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/ForgotPassword.cshtml index 43aa1120d3a748958b362325b65ec3c301478c1b..704576801c2c54e42ec74a4d540a695535d69f8c 100644 --- a/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/ForgotPassword.cshtml +++ b/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/ForgotPassword.cshtml @@ -10,7 +10,7 @@ <div class="row"> <div class="col-md-4"> <form method="post"> - <div asp-validation-summary="ModelOnly" class="text-danger"></div> + <div asp-validation-summary="ModelOnly" class="text-danger" role="alert"></div> <div class="form-floating"> <input asp-for="Input.Email" class="form-control" autocomplete="username" aria-required="true" /> <label asp-for="Input.Email" class="form-label"></label> diff --git a/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Login.cshtml b/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Login.cshtml index dc4511e7aed6d0dc95ff836c4d9d2de4453832d4..5dc1c572dfe876d7967d8df8eb3f053101fe2f9f 100644 --- a/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Login.cshtml +++ b/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Login.cshtml @@ -12,7 +12,7 @@ <form id="account" method="post"> <h2>Use a local account to log in.</h2> <hr /> - <div asp-validation-summary="ModelOnly" class="text-danger"></div> + <div asp-validation-summary="ModelOnly" class="text-danger" role="alert"></div> <div class="form-floating"> <input asp-for="Input.Email" class="form-control" autocomplete="username" aria-required="true" /> <label asp-for="Input.Email" class="form-label"></label> diff --git a/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/LoginWith2fa.cshtml b/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/LoginWith2fa.cshtml index 38088ed8299072a00951fde3532f18dfa128638b..f117a6b4e4556e17eeeb85326719811a37e04ded 100644 --- a/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/LoginWith2fa.cshtml +++ b/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/LoginWith2fa.cshtml @@ -11,7 +11,7 @@ <div class="col-md-4"> <form method="post" asp-route-returnUrl="@Model.ReturnUrl"> <input asp-for="RememberMe" type="hidden" /> - <div asp-validation-summary="ModelOnly" class="text-danger"></div> + <div asp-validation-summary="ModelOnly" class="text-danger" role="alert"></div> <div class="form-floating"> <input asp-for="Input.TwoFactorCode" class="form-control" autocomplete="off" /> <label asp-for="Input.TwoFactorCode" class="form-label"></label> diff --git a/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/LoginWithRecoveryCode.cshtml b/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/LoginWithRecoveryCode.cshtml index b45cefe3a33f25f008d3f6e6ecf10dc800d27f1a..503fbf161666bfaf981bb65f3207284b19d8e533 100644 --- a/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/LoginWithRecoveryCode.cshtml +++ b/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/LoginWithRecoveryCode.cshtml @@ -13,7 +13,7 @@ <div class="row"> <div class="col-md-4"> <form method="post"> - <div asp-validation-summary="ModelOnly" class="text-danger"></div> + <div asp-validation-summary="ModelOnly" class="text-danger" role="alert"></div> <div class="form-floating"> <input asp-for="Input.RecoveryCode" class="form-control" autocomplete="off" /> <label asp-for="Input.RecoveryCode" class="form-label"></label> diff --git a/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Manage/ChangePassword.cshtml b/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Manage/ChangePassword.cshtml index d130b8e8ae8deb87930e00993133b68dbf83a136..3bcae81e716e2804c0ff5cb4a88b3c6d1a48bca3 100644 --- a/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Manage/ChangePassword.cshtml +++ b/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Manage/ChangePassword.cshtml @@ -10,7 +10,7 @@ <div class="row"> <div class="col-md-6"> <form id="change-password-form" method="post"> - <div asp-validation-summary="ModelOnly" class="text-danger"></div> + <div asp-validation-summary="ModelOnly" class="text-danger" role="alert"></div> <div class="form-floating"> <input asp-for="Input.OldPassword" class="form-control" autocomplete="current-password" aria-required="true" /> <label asp-for="Input.OldPassword" class="form-label"></label> diff --git a/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Manage/DeletePersonalData.cshtml b/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Manage/DeletePersonalData.cshtml index 17f5a30b4bb64535bf3099fe336144fa4d16e325..cbc1a7a57042849f425965a79a429903cf44951f 100644 --- a/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Manage/DeletePersonalData.cshtml +++ b/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Manage/DeletePersonalData.cshtml @@ -15,7 +15,7 @@ <div> <form id="delete-user" method="post"> - <div asp-validation-summary="ModelOnly" class="text-danger"></div> + <div asp-validation-summary="ModelOnly" class="text-danger" role="alert"></div> @if (Model.RequirePassword) { <div class="form-floating"> diff --git a/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Manage/Email.cshtml b/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Manage/Email.cshtml index 9464333256b7e8fd4bcab2aa47f77bc1372b2ae6..8a251c0c2965613ec7dde2efb5e11d40fd935b2c 100644 --- a/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Manage/Email.cshtml +++ b/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Manage/Email.cshtml @@ -10,7 +10,7 @@ <div class="row"> <div class="col-md-6"> <form id="email-form" method="post"> - <div asp-validation-summary="All" class="text-danger"></div> + <div asp-validation-summary="All" class="text-danger" role="alert"></div> @if (Model.IsEmailConfirmed) { <div class="form-floating input-group"> diff --git a/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Manage/EnableAuthenticator.cshtml b/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Manage/EnableAuthenticator.cshtml index 5bec220561aee74b8ee3f142ac24c3a4b30316c2..8742fd3fa47223b9f83618ccf49d91c05457d8bc 100644 --- a/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Manage/EnableAuthenticator.cshtml +++ b/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Manage/EnableAuthenticator.cshtml @@ -40,7 +40,7 @@ <span asp-validation-for="Input.Code" class="text-danger"></span> </div> <button type="submit" class="w-100 btn btn-lg btn-primary">Verify</button> - <div asp-validation-summary="ModelOnly" class="text-danger"></div> + <div asp-validation-summary="ModelOnly" class="text-danger" role="alert"></div> </form> </div> </div> diff --git a/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Manage/Index.cshtml b/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Manage/Index.cshtml index 1d0e00f459a44aa4db57ce2b9e33d79dfe4bb4d3..47f9fe22124653e6d13a6c2923531ab8dc3f6bee 100644 --- a/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Manage/Index.cshtml +++ b/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Manage/Index.cshtml @@ -10,7 +10,7 @@ <div class="row"> <div class="col-md-6"> <form id="profile-form" method="post"> - <div asp-validation-summary="ModelOnly" class="text-danger"></div> + <div asp-validation-summary="ModelOnly" class="text-danger" role="alert"></div> <div class="form-floating"> <input asp-for="Username" class="form-control" disabled /> <label asp-for="Username" class="form-label"></label> diff --git a/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Manage/SetPassword.cshtml b/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Manage/SetPassword.cshtml index dd5827f012a2ac016b3a5ee256556dd072906bd3..05af7edb569e4acf578b88ac4f8d3eb1f630e8e4 100644 --- a/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Manage/SetPassword.cshtml +++ b/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Manage/SetPassword.cshtml @@ -14,7 +14,7 @@ <div class="row"> <div class="col-md-6"> <form id="set-password-form" method="post"> - <div asp-validation-summary="ModelOnly" class="text-danger"></div> + <div asp-validation-summary="ModelOnly" class="text-danger" role="alert"></div> <div class="form-floating"> <input asp-for="Input.NewPassword" class="form-control" autocomplete="new-password" /> <label asp-for="Input.NewPassword" class="form-label"></label> diff --git a/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Register.cshtml b/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Register.cshtml index e8ff83bc013eca4e9fafa39eff899b60ae99d93b..578b1a58a10a2d8546ace69efa8dfa18feb47d51 100644 --- a/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Register.cshtml +++ b/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/Register.cshtml @@ -11,7 +11,7 @@ <form id="registerForm" asp-route-returnUrl="@Model.ReturnUrl" method="post"> <h2>Create a new account.</h2> <hr /> - <div asp-validation-summary="ModelOnly" class="text-danger"></div> + <div asp-validation-summary="ModelOnly" class="text-danger" role="alert"></div> <div class="form-floating"> <input asp-for="Input.Email" class="form-control" autocomplete="username" aria-required="true" /> <label asp-for="Input.Email"></label> diff --git a/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/ResendEmailConfirmation.cshtml b/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/ResendEmailConfirmation.cshtml index ccce148ebd22bc8cac0c58e8fd4fe963638b12a4..c9c4dd097ba9b22e3c53df65d84602d50935c068 100644 --- a/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/ResendEmailConfirmation.cshtml +++ b/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/ResendEmailConfirmation.cshtml @@ -10,7 +10,7 @@ <div class="row"> <div class="col-md-4"> <form method="post"> - <div asp-validation-summary="All" class="text-danger"></div> + <div asp-validation-summary="All" class="text-danger" role="alert"></div> <div class="form-floating"> <input asp-for="Input.Email" class="form-control" aria-required="true" /> <label asp-for="Input.Email" class="form-label"></label> diff --git a/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/ResetPassword.cshtml b/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/ResetPassword.cshtml index d8114b6374417bdf323ddcd51aa81dbfc2df6588..494c0bf5dc06eb3e3e27cb79073c1ba8d2cf96ae 100644 --- a/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/ResetPassword.cshtml +++ b/src/Identity/UI/src/Areas/Identity/Pages/V5/Account/ResetPassword.cshtml @@ -10,7 +10,7 @@ <div class="row"> <div class="col-md-4"> <form method="post"> - <div asp-validation-summary="ModelOnly" class="text-danger"></div> + <div asp-validation-summary="ModelOnly" class="text-danger" role="alert"></div> <input asp-for="Input.Code" type="hidden" /> <div class="form-floating"> <input asp-for="Input.Email" class="form-control" autocomplete="username" aria-required="true" /> diff --git a/src/Identity/UI/src/Areas/Identity/Pages/V5/_Layout.cshtml b/src/Identity/UI/src/Areas/Identity/Pages/V5/_Layout.cshtml index 5efab86cc6f481548817635f3ec5eb8a4dbb6fe6..b0cc26fd2fc9dd10adc70876b0f5424b6aea0b33 100644 --- a/src/Identity/UI/src/Areas/Identity/Pages/V5/_Layout.cshtml +++ b/src/Identity/UI/src/Areas/Identity/Pages/V5/_Layout.cshtml @@ -3,7 +3,7 @@ @inject IWebHostEnvironment Environment @inject ICompositeViewEngine Engine <!DOCTYPE html> -<html> +<html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> diff --git a/src/ProjectTemplates/Web.ProjectTemplates/content/BlazorServerWeb-CSharp/Pages/Error.cshtml b/src/ProjectTemplates/Web.ProjectTemplates/content/BlazorServerWeb-CSharp/Pages/Error.cshtml index c8647bbda9af1d7b2d5e0e3492901a417cdfe178..edad5873281f2da37f68de919a91549bf7419a08 100644 --- a/src/ProjectTemplates/Web.ProjectTemplates/content/BlazorServerWeb-CSharp/Pages/Error.cshtml +++ b/src/ProjectTemplates/Web.ProjectTemplates/content/BlazorServerWeb-CSharp/Pages/Error.cshtml @@ -2,7 +2,7 @@ @model BlazorServerWeb_CSharp.Pages.ErrorModel <!DOCTYPE html> -<html> +<html lang="en"> <head> <meta charset="utf-8" /> diff --git a/src/ProjectTemplates/Web.ProjectTemplates/content/BlazorServerWeb-CSharp/Shared/SurveyPrompt.razor b/src/ProjectTemplates/Web.ProjectTemplates/content/BlazorServerWeb-CSharp/Shared/SurveyPrompt.razor index 989e27cd160c008697e4d1d0195c61ce64485631..e3e6429c168df84b51ef1e420fc27fc821afcce1 100644 --- a/src/ProjectTemplates/Web.ProjectTemplates/content/BlazorServerWeb-CSharp/Shared/SurveyPrompt.razor +++ b/src/ProjectTemplates/Web.ProjectTemplates/content/BlazorServerWeb-CSharp/Shared/SurveyPrompt.razor @@ -4,7 +4,7 @@ <span class="text-nowrap"> Please take our - <a target="_blank" class="font-weight-bold" href="https://go.microsoft.com/fwlink/?linkid=2149017">brief survey</a> + <a target="_blank" class="font-weight-bold link-dark" href="https://go.microsoft.com/fwlink/?linkid=2149017">brief survey</a> </span> and tell us what you think. </div> diff --git a/src/ProjectTemplates/Web.ProjectTemplates/content/BlazorServerWeb-CSharp/wwwroot/css/site.css b/src/ProjectTemplates/Web.ProjectTemplates/content/BlazorServerWeb-CSharp/wwwroot/css/site.css index 74db5be92e0b051ab87e784e8194747b551cee27..1f4b8cf3160a8ebb85613c7a61d183118d7fa43e 100644 --- a/src/ProjectTemplates/Web.ProjectTemplates/content/BlazorServerWeb-CSharp/wwwroot/css/site.css +++ b/src/ProjectTemplates/Web.ProjectTemplates/content/BlazorServerWeb-CSharp/wwwroot/css/site.css @@ -9,7 +9,7 @@ h1:focus { } a, .btn-link { - color: #0077cc; + color: #0071c1; } .btn-primary { diff --git a/src/ProjectTemplates/Web.ProjectTemplates/content/ComponentsWebAssembly-CSharp/Client/Shared/SurveyPrompt.razor b/src/ProjectTemplates/Web.ProjectTemplates/content/ComponentsWebAssembly-CSharp/Client/Shared/SurveyPrompt.razor index a51711199c9cb643115678bb05fc2985ce5b9068..962027fcc568d4d07e1967b8f8580fd994e07194 100644 --- a/src/ProjectTemplates/Web.ProjectTemplates/content/ComponentsWebAssembly-CSharp/Client/Shared/SurveyPrompt.razor +++ b/src/ProjectTemplates/Web.ProjectTemplates/content/ComponentsWebAssembly-CSharp/Client/Shared/SurveyPrompt.razor @@ -4,7 +4,7 @@ <span class="text-nowrap"> Please take our - <a target="_blank" class="font-weight-bold" href="https://go.microsoft.com/fwlink/?linkid=2148851">brief survey</a> + <a target="_blank" class="font-weight-bold link-dark" href="https://go.microsoft.com/fwlink/?linkid=2148851">brief survey</a> </span> and tell us what you think. </div> diff --git a/src/ProjectTemplates/Web.ProjectTemplates/content/ComponentsWebAssembly-CSharp/Client/wwwroot/css/app.css b/src/ProjectTemplates/Web.ProjectTemplates/content/ComponentsWebAssembly-CSharp/Client/wwwroot/css/app.css index ad8acaed55dd95f1a3351644857942445f3066f1..9cd148f7d5329b8b8e05a356a2a150bd757e149b 100644 --- a/src/ProjectTemplates/Web.ProjectTemplates/content/ComponentsWebAssembly-CSharp/Client/wwwroot/css/app.css +++ b/src/ProjectTemplates/Web.ProjectTemplates/content/ComponentsWebAssembly-CSharp/Client/wwwroot/css/app.css @@ -9,7 +9,7 @@ h1:focus { } a, .btn-link { - color: #0077cc; + color: #0071c1; } .btn-primary { diff --git a/src/ProjectTemplates/Web.ProjectTemplates/content/ComponentsWebAssembly-CSharp/Client/wwwroot/index.html b/src/ProjectTemplates/Web.ProjectTemplates/content/ComponentsWebAssembly-CSharp/Client/wwwroot/index.html index 05ab141a6230c02415d1e75486a7852a22432e65..fe965c6249dbf4eb3d03cea12511990d94717d8d 100644 --- a/src/ProjectTemplates/Web.ProjectTemplates/content/ComponentsWebAssembly-CSharp/Client/wwwroot/index.html +++ b/src/ProjectTemplates/Web.ProjectTemplates/content/ComponentsWebAssembly-CSharp/Client/wwwroot/index.html @@ -1,5 +1,5 @@ <!DOCTYPE html> -<html> +<html lang="en"> <head> <meta charset="utf-8" /> diff --git a/src/ProjectTemplates/Web.ProjectTemplates/content/ComponentsWebAssembly-CSharp/Server/Pages/Error.cshtml b/src/ProjectTemplates/Web.ProjectTemplates/content/ComponentsWebAssembly-CSharp/Server/Pages/Error.cshtml index 145c1ee8470066f399a88de5ad59c31aca9778e3..ba383d3f8b8829821dafb2042d724e8e29c4f37e 100644 --- a/src/ProjectTemplates/Web.ProjectTemplates/content/ComponentsWebAssembly-CSharp/Server/Pages/Error.cshtml +++ b/src/ProjectTemplates/Web.ProjectTemplates/content/ComponentsWebAssembly-CSharp/Server/Pages/Error.cshtml @@ -2,7 +2,7 @@ @model ComponentsWebAssembly_CSharp.Server.Pages.ErrorModel <!DOCTYPE html> -<html> +<html lang="en"> <head> <meta charset="utf-8" /> diff --git a/src/ProjectTemplates/Web.ProjectTemplates/content/StarterWeb-FSharp/Views/Shared/_Layout.cshtml b/src/ProjectTemplates/Web.ProjectTemplates/content/StarterWeb-FSharp/Views/Shared/_Layout.cshtml index 21a95455c93986ea8b7906b4c40c22382fe3336d..54d84c3ee3d9ab478b2f35ca631ecd937dbfb76e 100644 --- a/src/ProjectTemplates/Web.ProjectTemplates/content/StarterWeb-FSharp/Views/Shared/_Layout.cshtml +++ b/src/ProjectTemplates/Web.ProjectTemplates/content/StarterWeb-FSharp/Views/Shared/_Layout.cshtml @@ -1,5 +1,5 @@ <!DOCTYPE html> -<html> +<html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />