Improved nofollow on login/register pages
This commit is contained in:
parent
7bb2991ada
commit
35a5540a72
|
@ -13,7 +13,6 @@
|
|||
@inject NavigationManager Navigation
|
||||
|
||||
<HeadContent>
|
||||
<meta name="robots" content="nofollow">
|
||||
<link rel="canonical" href="@(new UriBuilder(Navigation.BaseUri) { Scheme = "https", Port = -1, Path = "/account/login" }.Uri.AbsoluteUri)" />
|
||||
</HeadContent>
|
||||
|
||||
|
@ -47,7 +46,7 @@
|
|||
</EditForm>
|
||||
<ul class="mt-3 flex flex-col gap-1 text-center">
|
||||
<li>
|
||||
<a class="hover:link" href="/Account/ForgotPassword">
|
||||
<a class="hover:link" href="/Account/ForgotPassword" rel="nofollow">
|
||||
@Localizer["ResetPassword_Label"]
|
||||
</a>
|
||||
</li>
|
||||
|
@ -57,7 +56,7 @@
|
|||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="hover:link" href="/Account/ResendEmailConfirmation">
|
||||
<a class="hover:link" href="/Account/ResendEmailConfirmation" rel="nofollow">
|
||||
@Localizer["ResendMailConfirmation_Label"]
|
||||
</a>
|
||||
</li>
|
||||
|
|
|
@ -20,7 +20,6 @@
|
|||
@inject NavigationManager Navigation
|
||||
|
||||
<HeadContent>
|
||||
<meta name="robots" content="nofollow">
|
||||
<link rel="canonical" href="@(new UriBuilder(Navigation.BaseUri) { Scheme = "https", Port = -1, Path = "/account/register" }.Uri.AbsoluteUri)" />
|
||||
</HeadContent>
|
||||
|
||||
|
|
Loading…
Reference in a new issue