2017-11-30 05:55:28 +08:00
|
|
|
---
|
|
|
|
title: Articles based on projects created with individual user accounts
|
|
|
|
author: rick-anderson
|
|
|
|
description: This document lists articles based on projects created with individual user accounts.
|
|
|
|
manager: wpickett
|
2018-01-29 23:21:31 +08:00
|
|
|
ms.author: riande
|
2017-11-30 05:55:28 +08:00
|
|
|
ms.date: 11/30/2017
|
|
|
|
ms.prod: asp.net-core
|
2018-01-29 23:21:31 +08:00
|
|
|
ms.technology: aspnet
|
|
|
|
ms.topic: article
|
2017-11-30 05:55:28 +08:00
|
|
|
uid: security/authentication/individual
|
|
|
|
---
|
|
|
|
# Articles based on projects created with individual user accounts
|
|
|
|
|
|
|
|
ASP.NET Core Identity is included in project templates in Visual Studio with the "Individual User Accounts" option.
|
|
|
|
|
|
|
|
The authentication templates are available in .NET Core CLI with `-au Individual`:
|
|
|
|
|
|
|
|
```console
|
|
|
|
dotnet new mvc -au Individual
|
|
|
|
dotnet new webapi -au Individual
|
|
|
|
dotnet new razor -au Individual
|
|
|
|
```
|
|
|
|
|
|
|
|
The following articles show how to use the code generated in ASP.NET Core templates that use individual user accounts:
|
|
|
|
|
|
|
|
* [Two-factor authentication with SMS](xref:security/authentication/2fa)
|
|
|
|
* [Account confirmation and password recovery in ASP.NET Core](xref:security/authentication/accconfirm)
|
2018-01-20 04:11:45 +08:00
|
|
|
* [Create an ASP.NET Core app with user data protected by authorization](xref:security/authorization/secure-data)
|