F1 - Autentcacion - Completa
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace vita_asistente.ViewModels
|
||||
{
|
||||
public class RegisterViewModel
|
||||
{
|
||||
[Required]
|
||||
[Display(Name = "Nombre")]
|
||||
public string Nombre { get; set; }
|
||||
|
||||
[Required]
|
||||
[Display(Name = "Apellido")]
|
||||
public string Apellido { get; set; }
|
||||
|
||||
[Required]
|
||||
[Display(Name = "Documento")]
|
||||
public string Documento { get; set; }
|
||||
|
||||
[Required]
|
||||
[Display(Name = "Dirección")]
|
||||
public string Direccion { get; set; }
|
||||
|
||||
[Required]
|
||||
[Display(Name = "Teléfono")]
|
||||
public string Telefono { get; set; } // puedes usar PhoneNumber de Identity también
|
||||
|
||||
[Required]
|
||||
[EmailAddress]
|
||||
[Display(Name = "Correo electrónico")]
|
||||
public string Email { get; set; }
|
||||
|
||||
[Required]
|
||||
[DataType(DataType.Password)]
|
||||
[Display(Name = "Contraseña")]
|
||||
public string Password { get; set; }
|
||||
|
||||
[DataType(DataType.Password)]
|
||||
[Display(Name = "Confirmar contraseña")]
|
||||
[Compare("Password", ErrorMessage = "Las contraseñas no coinciden")]
|
||||
public string ConfirmPassword { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user