L
-Send security code!
-TODO: This page is under construction.
diff --git a/modules/account/src/Volo.Abp.Account.Web/Pages/Account/SendSecurityCode.cshtml.cs b/modules/account/src/Volo.Abp.Account.Web/Pages/Account/SendSecurityCode.cshtml.cs
deleted file mode 100644
index 56f2e44b85..0000000000
--- a/modules/account/src/Volo.Abp.Account.Web/Pages/Account/SendSecurityCode.cshtml.cs
+++ /dev/null
@@ -1,49 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Threading.Tasks;
-using Microsoft.AspNetCore.Identity;
-using Microsoft.AspNetCore.Mvc;
-using Microsoft.AspNetCore.Mvc.Rendering;
-
-namespace Volo.Abp.Account.Web.Pages.Account
-{
- public class SendSecurityCodeModel : AccountPageModel
- {
- public List Providers { get; set; }
-
- public virtual async Task OnGetAsync()
- {
- var user = await SignInManager.GetTwoFactorAuthenticationUserAsync();
- if (user == null)
- {
- return RedirectToPage("./Login");
- }
-
- return Page();
-
- //CheckCurrentTenant(await SignInManager.GetVerifiedTenantIdAsync());
-
- //Providers = (await UserManager.GetValidTwoFactorProvidersAsync(user))
- // .Select(userProvider =>
- // new SelectListItem
- // {
- // Text = userProvider,
- // Value = userProvider
- // }).ToList();
-
- //return View(
- // new SendSecurityCodeViewModel
- // {
- // ReturnUrl = returnUrl,
- // RememberMe = rememberMe
- // }
- //);
- }
-
- public virtual Task OnPostAsync()
- {
- return Task.FromResult(Page());
- }
- }
-}
\ No newline at end of file