RegisterConfirmation.cshtml 627 B

12345678910111213141516171819202122
  1. @page
  2. @model BO.AppServer.Web.Areas.Identity.Pages.Account.RegisterConfirmationModel
  3. @{
  4. ViewData["Title"] = "Register confirmation";
  5. }
  6. <h1>@ViewData["Title"]</h1>
  7. @{
  8. if (@Model.DisplayConfirmAccountLink)
  9. {
  10. <p>
  11. This app does not currently have a real email sender registered, see <a href="https://aka.ms/aspaccountconf">these docs</a> for how to configure a real email sender.
  12. Normally this would be emailed: <a id="confirm-link" href="@Model.EmailConfirmationUrl">Click here to confirm your account</a>
  13. </p>
  14. }
  15. else
  16. {
  17. <p>
  18. Please check your email to confirm your account.
  19. </p>
  20. }
  21. }