Skip to content

Commit

Permalink
Fix login
Browse files Browse the repository at this point in the history
Foxocube committed Jan 4, 2025
1 parent 0a55022 commit e8c379f
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -9,6 +9,7 @@
@using Microsoft.AspNetCore.WebUtilities
@attribute [IgnoreAntiforgeryToken]
@attribute [AllowAnonymous]
@rendermode InteractiveServer

@inject SignInManager<AuthUser> SignInManager
@inject UserManager<AuthUser> UserManager
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
@page "/Account/Login"
@attribute [AllowAnonymous]
@rendermode InteractiveServer

<PageTitle>Log in</PageTitle>

Original file line number Diff line number Diff line change
@@ -3,6 +3,7 @@
@using Microsoft.AspNetCore.Identity
@inject SignInManager<AuthUser> SignInManager
@inject IdentityRedirectManager RedirectManager
@rendermode InteractiveServer

<form class="form-horizontal" action="Account/PerformExternalLogin" method="post">
<div>

0 comments on commit e8c379f

Please sign in to comment.