Skip to content

Commit 44c3e5d

Browse files
Titles in h1 (#1966)
Titles in h1
1 parent 415a6cb commit 44c3e5d

File tree

93 files changed

+93
-93
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+93
-93
lines changed

samples/IdentityOIDCWebApplicationSample/Areas/Identity/Views/Account/ConfirmEmail.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
ViewData["Title"] = "Confirm Email";
33
}
44

5-
<h2>@ViewData["Title"].</h2>
5+
<h1>@ViewData["Title"].</h1>
66
<div>
77
<p>
88
Thank you for confirming your email. Please <a asp-controller="Account" asp-action="Login">click here to log in</a>.

samples/IdentityOIDCWebApplicationSample/Areas/Identity/Views/Account/ExternalLoginConfirmation.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ViewData["Title"] = "Register";
44
}
55

6-
<h2>@ViewData["Title"].</h2>
6+
<h1>@ViewData["Title"].</h1>
77
<h3>Associate your @ViewData["LoginProvider"] account.</h3>
88

99
<form asp-controller="Account" asp-action="ExternalLoginConfirmation" asp-route-returnurl="@ViewData["ReturnUrl"]" method="post" class="form-horizontal">

samples/IdentityOIDCWebApplicationSample/Areas/Identity/Views/Account/ExternalLoginFailure.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
}
44

55
<header>
6-
<h2>@ViewData["Title"].</h2>
6+
<h1>@ViewData["Title"].</h1>
77
<p class="text-danger">Unsuccessful login with service.</p>
88
</header>

samples/IdentityOIDCWebApplicationSample/Areas/Identity/Views/Account/ForgotPasswordConfirmation.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
ViewData["Title"] = "Forgot Password Confirmation";
33
}
44

5-
<h2>@ViewData["Title"].</h2>
5+
<h1>@ViewData["Title"].</h1>
66
<p>
77
Please check your email to reset your password.
88
</p>

samples/IdentityOIDCWebApplicationSample/Areas/Identity/Views/Account/Login.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
ViewData["Title"] = "Log in";
1111
}
1212

13-
<h2>@ViewData["Title"].</h2>
13+
<h1>@ViewData["Title"].</h1>
1414
<div class="row">
1515
<div class="col-md-8">
1616
<section>

samples/IdentityOIDCWebApplicationSample/Areas/Identity/Views/Account/Register.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ViewData["Title"] = "Register";
44
}
55

6-
<h2>@ViewData["Title"].</h2>
6+
<h1>@ViewData["Title"].</h1>
77

88
<form asp-controller="Account" asp-action="Register" asp-route-returnurl="@ViewData["ReturnUrl"]" method="post" class="form-horizontal">
99
<h4>Create a new account.</h4>

samples/IdentityOIDCWebApplicationSample/Areas/Identity/Views/Account/ResetPassword.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ViewData["Title"] = "Reset password";
44
}
55

6-
<h2>@ViewData["Title"].</h2>
6+
<h1>@ViewData["Title"].</h1>
77

88
<form asp-controller="Account" asp-action="ResetPassword" method="post" class="form-horizontal">
99
<h4>Reset your password.</h4>

samples/IdentityOIDCWebApplicationSample/Areas/Identity/Views/Account/SendCode.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ViewData["Title"] = "Send Verification Code";
44
}
55

6-
<h2>@ViewData["Title"].</h2>
6+
<h1>@ViewData["Title"].</h1>
77

88
<form asp-controller="Account" asp-action="SendCode" asp-route-returnurl="@Model.ReturnUrl" method="post" class="form-horizontal">
99
<input asp-for="RememberMe" type="hidden" />

samples/IdentityOIDCWebApplicationSample/Areas/Identity/Views/Account/VerifyCode.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ViewData["Title"] = "Verify";
44
}
55

6-
<h2>@ViewData["Title"].</h2>
6+
<h1>@ViewData["Title"].</h1>
77

88
<form asp-controller="Account" asp-action="VerifyCode" asp-route-returnurl="@Model.ReturnUrl" method="post" class="form-horizontal">
99
<div asp-validation-summary="All" class="text-danger"></div>

samples/IdentityOIDCWebApplicationSample/Areas/Identity/Views/Applications/AddLogoutUri.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
ViewData["Title"] = "Add a logout uri to your application";
66
}
77

8-
<h2>@ViewData["Title"].</h2>
8+
<h1>@ViewData["Title"].</h1>
99
<div>
1010
<ul class="list-unstyled">
1111
<li class="h4">Name</li>

samples/IdentityOIDCWebApplicationSample/Areas/Identity/Views/Applications/AddRedirectUri.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
ViewData["Title"] = "Add a redirect uri to your application";
66
}
77

8-
<h2>@ViewData["Title"].</h2>
8+
<h1>@ViewData["Title"].</h1>
99
<div>
1010
<ul class="list-unstyled">
1111
<li class="h4">Name</li>

samples/IdentityOIDCWebApplicationSample/Areas/Identity/Views/Applications/AddScope.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
ViewData["Title"] = "Add a scope to your application";
66
}
77

8-
<h2>@ViewData["Title"].</h2>
8+
<h1>@ViewData["Title"].</h1>
99
<hr />
1010
<ul class="list-unstyled">
1111
<li class="h4">Name</li>

samples/IdentityOIDCWebApplicationSample/Areas/Identity/Views/Applications/Create.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
ViewData["Title"] = "Create your application";
66
}
77

8-
<h2>@ViewData["Title"].</h2>
8+
<h1>@ViewData["Title"].</h1>
99
<div>
1010
<hr />
1111
<form asp-action="Create" method="post">

samples/IdentityOIDCWebApplicationSample/Areas/Identity/Views/Applications/CreateLogoutUri.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
ViewData["Title"] = "Add a logout uri to your application";
66
}
77

8-
<h2>@ViewData["Title"].</h2>
8+
<h1>@ViewData["Title"].</h1>
99
<div>
1010
<hr />
1111
<ul class="list-unstyled">

samples/IdentityOIDCWebApplicationSample/Areas/Identity/Views/Applications/CreateRedirectUri.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
ViewData["Title"] = "Add a redirect uri to your application";
66
}
77

8-
<h2>@ViewData["Title"].</h2>
8+
<h1>@ViewData["Title"].</h1>
99
<div>
1010
<hr />
1111
<ul class="list-unstyled">

samples/IdentityOIDCWebApplicationSample/Areas/Identity/Views/Applications/CreateScope.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
ViewData["Title"] = "Add a scope to your application";
66
}
77

8-
<h2>@ViewData["Title"].</h2>
8+
<h1>@ViewData["Title"].</h1>
99
<div>
1010
<hr />
1111
<ul class="list-unstyled">

samples/IdentityOIDCWebApplicationSample/Areas/Identity/Views/Applications/EditScope.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
ViewData["Title"] = "Edit scope";
66
}
77

8-
<h2>@ViewData["Title"].</h2>
8+
<h1>@ViewData["Title"].</h1>
99
<hr />
1010
<ul class="list-unstyled">
1111
<li class="h4">Name</li>

samples/IdentityOIDCWebApplicationSample/Areas/Identity/Views/Applications/GenerateClientSecret.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
ViewData["Title"] = "Generate an application key";
66
}
77

8-
<h2>@ViewData["Title"].</h2>
8+
<h1>@ViewData["Title"].</h1>
99
<hr />
1010

1111
<ul class="list-unstyled">

samples/IdentityOIDCWebApplicationSample/Areas/Identity/Views/Applications/GeneratedClientSecret.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
ViewData["Title"] = "Application key successfully generated";
66
}
77

8-
<h2>@ViewData["Title"].</h2>
8+
<h1>@ViewData["Title"].</h1>
99
<div>
1010
<hr />
1111
<ul class="list-unstyled">

samples/IdentityOIDCWebApplicationSample/Areas/Identity/Views/Applications/Index.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ViewData["Title"] = "Manage your applications";
44
}
55

6-
<h2>@ViewData["Title"].</h2>
6+
<h1>@ViewData["Title"].</h1>
77
<p class="text-success">@ViewData["StatusMessage"]</p>
88

99
<div>

samples/IdentityOIDCWebApplicationSample/Areas/Identity/Views/Applications/RegenerateClientSecret.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
ViewData["Title"] = "Regenerate an application key";
66
}
77

8-
<h2>@ViewData["Title"].</h2>
8+
<h1>@ViewData["Title"].</h1>
99
<hr />
1010

1111
<ul class="list-unstyled">

samples/IdentityOIDCWebApplicationSample/Areas/Identity/Views/Applications/RemoveClientSecret.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
ViewData["Title"] = "Remove the application key";
66
}
77

8-
<h2>@ViewData["Title"].</h2>
8+
<h1>@ViewData["Title"].</h1>
99
<hr />
1010

1111
<ul class="list-unstyled">

samples/IdentityOIDCWebApplicationSample/Areas/Identity/Views/IdentityService/InvalidLogoutRedirect.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
@{
44
ViewData["Title"] = "Invalid logout redirect";
55
}
6-
<h2>@ViewData["Title"].</h2>
6+
<h1>@ViewData["Title"].</h1>
77
<p class="text-warning">@Model.ErrorDescription</p>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@{
22
ViewData["Title"] = "Signed Out";
33
}
4-
<h2>@ViewData["Title"].</h2>
4+
<h1>@ViewData["Title"].</h1>
55
<p class="text-success">You have successfully signed out.</p>

samples/IdentityOIDCWebApplicationSample/Areas/Identity/Views/Manage/AddPhoneNumber.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ViewData["Title"] = "Add Phone Number";
44
}
55

6-
<h2>@ViewData["Title"].</h2>
6+
<h1>@ViewData["Title"].</h1>
77
<form asp-controller="Manage" asp-action="AddPhoneNumber" method="post" class="form-horizontal">
88
<h4>Add a phone number.</h4>
99
<hr />

samples/IdentityOIDCWebApplicationSample/Areas/Identity/Views/Manage/ChangePassword.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ViewData["Title"] = "Change Password";
44
}
55

6-
<h2>@ViewData["Title"].</h2>
6+
<h1>@ViewData["Title"].</h1>
77

88
<form asp-controller="Manage" asp-action="ChangePassword" method="post" class="form-horizontal">
99
<h4>Change Password</h4>

samples/IdentityOIDCWebApplicationSample/Areas/Identity/Views/Manage/Index.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ViewData["Title"] = "Manage your account";
44
}
55

6-
<h2>@ViewData["Title"].</h2>
6+
<h1>@ViewData["Title"].</h1>
77
<p class="text-success">@ViewData["StatusMessage"]</p>
88

99
<div>

samples/IdentityOIDCWebApplicationSample/Areas/Identity/Views/Manage/ManageLogins.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
ViewData["Title"] = "Manage your external logins";
55
}
66

7-
<h2>@ViewData["Title"].</h2>
7+
<h1>@ViewData["Title"].</h1>
88

99
<p class="text-success">@ViewData["StatusMessage"]</p>
1010
@if (Model.CurrentLogins.Count > 0)

samples/IdentityOIDCWebApplicationSample/Areas/Identity/Views/Manage/VerifyPhoneNumber.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ViewData["Title"] = "Verify Phone Number";
44
}
55

6-
<h2>@ViewData["Title"].</h2>
6+
<h1>@ViewData["Title"].</h1>
77

88
<form asp-controller="Manage" asp-action="VerifyPhoneNumber" asp-route-returnurl="@ViewData["ReturnUrl"]" method="post" class="form-horizontal">
99
<input asp-for="PhoneNumber" type="hidden" />
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@{
22
ViewData["Title"] = "Signed Out";
33
}
4-
<h2>@ViewData["Title"].</h2>
4+
<h1>@ViewData["Title"].</h1>
55
<p class="text-success">You have successfully signed out.</p>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@{
22
ViewData["Title"] = "About";
33
}
4-
<h2>@ViewData["Title"].</h2>
4+
<h1>@ViewData["Title"].</h1>
55
<h3>@ViewData["Message"]</h3>
66

77
<p>Use this area to provide additional information.</p>

samples/IdentityOIDCWebApplicationSample/Views/Home/Contact.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@{
22
ViewData["Title"] = "Contact";
33
}
4-
<h2>@ViewData["Title"].</h2>
4+
<h1>@ViewData["Title"].</h1>
55
<h3>@ViewData["Message"]</h3>
66

77
<address>

samples/IdentitySample.Mvc/Views/Account/ConfirmEmail.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
ViewData["Title"] = "Confirm Email";
33
}
44

5-
<h2>@ViewData["Title"].</h2>
5+
<h1>@ViewData["Title"].</h1>
66
<div>
77
<p>
88
Thank you for confirming your email. Please <a asp-controller="Account" asp-action="Login">Click here to Log in</a>.

samples/IdentitySample.Mvc/Views/Account/ExternalLoginConfirmation.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ViewData["Title"] = "Register";
44
}
55

6-
<h2>@ViewData["Title"].</h2>
6+
<h1>@ViewData["Title"].</h1>
77
<h3>Associate your @ViewData["ProviderDisplayName"] account.</h3>
88

99
<form asp-controller="Account" asp-action="ExternalLoginConfirmation" asp-route-returnurl="@ViewData["ReturnUrl"]" method="post" class="form-horizontal" role="form">

samples/IdentitySample.Mvc/Views/Account/ExternalLoginFailure.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
}
44

55
<header>
6-
<h2>@ViewData["Title"].</h2>
6+
<h1>@ViewData["Title"].</h1>
77
<p class="text-danger">Unsuccessful login with service.</p>
88
</header>

samples/IdentitySample.Mvc/Views/Account/ForgotPassword.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ViewData["Title"] = "Forgot your password?";
44
}
55

6-
<h2>@ViewData["Title"].</h2>
6+
<h1>@ViewData["Title"].</h1>
77
<p>
88
For more information on how to enable reset password please see this <a href="http://go.microsoft.com/fwlink/?LinkID=532713">article</a>.
99
</p>

samples/IdentitySample.Mvc/Views/Account/ForgotPasswordConfirmation.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
ViewData["Title"] = "Forgot Password Confirmation";
33
}
44

5-
<h2>@ViewData["Title"].</h2>
5+
<h1>@ViewData["Title"].</h1>
66
<p>
77
Please check your email to reset your password.
88
</p>

samples/IdentitySample.Mvc/Views/Account/Login.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
ViewData["Title"] = "Log in";
99
}
1010

11-
<h2>@ViewData["Title"].</h2>
11+
<h1>@ViewData["Title"].</h1>
1212
<div class="row">
1313
<div class="col-md-8">
1414
<section>

samples/IdentitySample.Mvc/Views/Account/Register.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ViewData["Title"] = "Register";
44
}
55

6-
<h2>@ViewData["Title"].</h2>
6+
<h1>@ViewData["Title"].</h1>
77

88
<form asp-controller="Account" asp-action="Register" asp-route-returnurl="@ViewData["ReturnUrl"]" method="post" class="form-horizontal" role="form">
99
<h4>Create a new account.</h4>

samples/IdentitySample.Mvc/Views/Account/ResetPassword.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ViewData["Title"] = "Reset password";
44
}
55

6-
<h2>@ViewData["Title"].</h2>
6+
<h1>@ViewData["Title"].</h1>
77

88
<form asp-controller="Account" asp-action="ResetPassword" method="post" class="form-horizontal" role="form">
99
<h4>Reset your password.</h4>

samples/IdentitySample.Mvc/Views/Account/SendCode.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ViewData["Title"] = "Send Verification Code";
44
}
55

6-
<h2>@ViewData["Title"].</h2>
6+
<h1>@ViewData["Title"].</h1>
77

88
<form asp-controller="Account" asp-action="SendCode" asp-route-returnurl="@Model.ReturnUrl" method="post" class="form-horizontal" role="form">
99
<input asp-for="RememberMe" type="hidden" />

samples/IdentitySample.Mvc/Views/Account/UseRecoveryCode.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ViewData["Title"] = "Use recovery code";
44
}
55

6-
<h2>@ViewData["Title"].</h2>
6+
<h1>@ViewData["Title"].</h1>
77

88
<form asp-controller="Account" asp-action="UseRecoveryCode" asp-route-returnurl="@ViewData["ReturnUrl"]" method="post" class="form-horizontal" role="form">
99
<div asp-validation-summary="All" class="text-danger"></div>

samples/IdentitySample.Mvc/Views/Account/VerifyAuthenticatorCode.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ViewData["Title"] = "Verify";
44
}
55

6-
<h2>@ViewData["Title"].</h2>
6+
<h1>@ViewData["Title"].</h1>
77

88
<form asp-controller="Account" asp-action="VerifyAuthenticatorCode" asp-route-returnurl="@ViewData["ReturnUrl"]" method="post" class="form-horizontal" role="form">
99
<div asp-validation-summary="All" class="text-danger"></div>

samples/IdentitySample.Mvc/Views/Account/VerifyCode.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ViewData["Title"] = "Verify";
44
}
55

6-
<h2>@ViewData["Title"].</h2>
6+
<h1>@ViewData["Title"].</h1>
77

88
<form asp-controller="Account" asp-action="VerifyCode" asp-route-returnurl="@ViewData["ReturnUrl"]" method="post" class="form-horizontal" role="form">
99
<div asp-validation-summary="All" class="text-danger"></div>

samples/IdentitySample.Mvc/Views/Manage/AddPhoneNumber.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ViewData["Title"] = "Add Phone Number";
44
}
55

6-
<h2>@ViewData["Title"].</h2>
6+
<h1>@ViewData["Title"].</h1>
77
<form asp-controller="Manage" asp-action="AddPhoneNumber" method="post" class="form-horizontal" role="form">
88
<h4>Add a phone number.</h4>
99
<hr />

0 commit comments

Comments
 (0)