Skip to content

Commit

Permalink
Fix login
Browse files Browse the repository at this point in the history
  • Loading branch information
Foxocube committed Jan 4, 2025
1 parent e8c379f commit 7a11e18
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 @@ -9,7 +9,7 @@
@using Microsoft.AspNetCore.WebUtilities
@attribute [IgnoreAntiforgeryToken]
@attribute [AllowAnonymous]
@rendermode InteractiveServer
@rendermode @(new InteractiveServerRenderMode(prerender: true))

@inject SignInManager<AuthUser> SignInManager
@inject UserManager<AuthUser> UserManager
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@using Microsoft.AspNetCore.Identity
@inject SignInManager<AuthUser> SignInManager
@inject IdentityRedirectManager RedirectManager
@rendermode InteractiveServer
@rendermode @(new InteractiveServerRenderMode(prerender: true))

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

0 comments on commit 7a11e18

Please sign in to comment.