UsersController

This commit is contained in:
ani_konarcheva@abv.bg
2022-04-07 23:52:54 +03:00
parent 7a352c35f6
commit 4e25e34b99
14 changed files with 784 additions and 20 deletions

View File

@@ -14,6 +14,7 @@ using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
using Microsoft.AspNetCore.WebUtilities;
using Microsoft.Extensions.Logging;
using Microsoft.EntityFrameworkCore;
namespace WebApp.Areas.Identity.Pages.Account
{
@@ -56,12 +57,13 @@ namespace WebApp.Areas.Identity.Pages.Account
[Display(Name = "Email")]
public string Email { get; set; }
[Display(Name = "First Name")]
[Display(Name = "First name")]
public string FirstName { get; set; }
[Display(Name = "Last Name")]
[Display(Name = "Last name")]
public string LastName { get; set; }
[Phone]
[Display(Name = "Phone")]
public string PhoneNumber { get; set; }