自定义身份验证类型的登录页面设计:个人用户帐户 ASP.NET core 2.1、MVC、c#

1

本文介绍了自定义身份验证类型的登录页面设计:个人用户帐户 ASP.NET core 2.1、MVC、c#的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在尝试为我的 Web 应用程序实现 OAuth2.0.我在

我该怎么做?

编辑

解决方案

要低评论,所以我会发布作为答案,请按照此 答案.

对我来说,我只是右键单击项目,选择 Add ->新建 Scaffold Item,在左侧窗格中的新对话框中选择 Identity,然后按照提示进行操作.

login.cshtml 页面是在 Areas/Identity/Pages/Account 目录中创建的.

I'm trying to implement OAuth2.0 for my web application. I have done that following this link.

I have registered with 2 external providers Microsoft and Google. I have added Authentication in startup.cs file as well.

So when I run the application, click on Login button on top right corner, a Login page is displayed.The URL it is showing is https://localhost:44325/Identity/Account/Login.

But I'm unable to find this page anywhere in my solution. I want to modify this page's design and want to make this my first page as soon as I open the application.

How do I do it?

Edit

解决方案

To low to comment so I'll post as an answer, follow the instructions at this answer.

For me I just right-clicked on the project, selected Add -> New Scaffold Item, picked Identity on the new dialog, in the left pane, and followed the prompts.

The login.cshtml pages were created in the Areas/Identity/Pages/Account directory.

这篇关于自定义身份验证类型的登录页面设计:个人用户帐户 ASP.NET core 2.1、MVC、c#的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

C# 中的多播委托奇怪行为?
Multicast delegate weird behavior in C#?(C# 中的多播委托奇怪行为?)...
2023-11-11 C#/.NET开发问题
6

参数计数与调用不匹配?
Parameter count mismatch with Invoke?(参数计数与调用不匹配?)...
2023-11-11 C#/.NET开发问题
26

如何将代表存储在列表中
How to store delegates in a List(如何将代表存储在列表中)...
2023-11-11 C#/.NET开发问题
6

代表如何工作(在后台)?
How delegates work (in the background)?(代表如何工作(在后台)?)...
2023-11-11 C#/.NET开发问题
5

没有 EndInvoke 的 C# 异步调用?
C# Asynchronous call without EndInvoke?(没有 EndInvoke 的 C# 异步调用?)...
2023-11-11 C#/.NET开发问题
2

Delegate.CreateDelegate() 和泛型:错误绑定到目标方法
Delegate.CreateDelegate() and generics: Error binding to target method(Delegate.CreateDelegate() 和泛型:错误绑定到目标方法)...
2023-11-11 C#/.NET开发问题
14