Skip to content

Commit

Permalink
Fix app-based TFA setup screen <kbd> encoding (#15334)
Browse files Browse the repository at this point in the history
* Fix app-based TFA setup screen <kbd> encoding

* Fixing docs link
  • Loading branch information
Piedone authored Feb 14, 2024
1 parent 04b2e1b commit bfa7487
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</li>
<li>
<p>
@T["Scan the QR Code below, or enter this key {0} into your two-factor authenticator app. You may ignore spaces and casing.", $"<kbd>{Model.SharedKey}</kbd>"]
@T["Scan the QR Code below, or enter the key <kbd>{0}</kbd> into your two-factor authenticator app. You may ignore spaces and casing.", Model.SharedKey]
</p>
<div id="qrCode" class="mb-3"></div>
<div id="qrCodeData" data-url="@Model.AuthenticatorUri"></div>
Expand Down
2 changes: 1 addition & 1 deletion src/docs/getting-started/templates/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Fire up Visual Studio, create a new solution file (`.sln`) by creating a new ASP
![image](../assets/images/templates/orchard-screencast-1.gif)

Now that we created a new Web Application we need to add proper dependencies so that this new Web Application be targeted as an Orchard Core application.
Orchard Core can be added through two distinct NuGet meta packages: `OrchardCore.Application.Cms.Core.Targets` and `OrchardCore.Application.Cms.Targets`. For additional information regarding these packages, please refer to [this link](../starter-recipes/README.md). You must add one of these NuGet packages in your Web Application.
Orchard Core can be added through two distinct NuGet meta packages: `OrchardCore.Application.Cms.Core.Targets` and `OrchardCore.Application.Cms.Targets`. For additional information regarding these packages, please refer to [this link](../starter-recipes.md). You must add one of these NuGet packages in your Web Application.

!!! note
If you want to use the `preview` packages, [configure the OrchardCore Preview url in your Package sources](../preview-package-source.md)
Expand Down

0 comments on commit bfa7487

Please sign in to comment.