// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace Templates.Test.Helpers;
public static class PageUrls
{
public const string HomeUrl = "/";
public const string PrivacyUrl = "/Privacy";
public const string PrivacyFullUrl = "/Home/Privacy";
public const string DocsUrl = "https://learn.microsoft.com/aspnet/core";
public const string LoginUrl = "/Identity/Account/Login";
public const string RegisterUrl = "/Identity/Account/Register";
public const string ForgotPassword = "/Identity/Account/ForgotPassword";
public const string ResendEmailConfirmation = "/Identity/Account/ResendEmailConfirmation";
public const string ExternalArticle = "https://go.microsoft.com/fwlink/?LinkID=532715";
}
|