[Fixes #245] Update Identity to use the default layout from the application.

Added /Areas/Identity/Pages/_ViewStart.cshtml and set the layout to the
applications layout.
This commit is contained in:
Javier Calvarro Nelson 2018-01-21 14:50:55 -08:00
parent 78f4c7342b
commit 2269a31983
5 changed files with 10 additions and 2 deletions

View File

@ -56,7 +56,8 @@
{
"condition": "(!IndividualLocalAuth)",
"exclude": [
"Data/**"
"Data/**",
"Areas/**"
]
},
{

View File

@ -0,0 +1,3 @@
@{
Layout = "/Pages/_Layout.cshtml";
}

View File

@ -49,7 +49,8 @@
{
"condition": "(!IndividualAuth)",
"exclude": [
"Data/**"
"Data/**",
"Areas/**"
]
},
{

View File

@ -0,0 +1,3 @@
@{
Layout = "/Views/Shared/_Layout.cshtml";
}