118 lines
3.4 KiB
C#
118 lines
3.4 KiB
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace EnVisage.Models
|
|
{
|
|
public class ExternalLoginConfirmationViewModel
|
|
{
|
|
[Required]
|
|
[Display(Name = "User name")]
|
|
public string UserName { get; set; }
|
|
}
|
|
|
|
public class ManageUserViewModel
|
|
{
|
|
[Required]
|
|
[DataType(DataType.Password)]
|
|
[Display(Name = "Current password")]
|
|
public string OldPassword { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(100, ErrorMessage = "The {0} must be at least {2} characters long.", MinimumLength = 6)]
|
|
[DataType(DataType.Password)]
|
|
[Display(Name = "New password")]
|
|
public string NewPassword { get; set; }
|
|
|
|
[DataType(DataType.Password)]
|
|
[Display(Name = "Confirm new password")]
|
|
[Compare("NewPassword", ErrorMessage = "The new password and confirmation password do not match.")]
|
|
public string ConfirmPassword { get; set; }
|
|
|
|
[DataType(DataType.EmailAddress)]
|
|
[Display(Name="Email")]
|
|
public string Email { get; set; }
|
|
|
|
[DataType(DataType.PhoneNumber)]
|
|
[Display(Name="Phone number")]
|
|
public string Phone { get; set; }
|
|
|
|
[Display(Name = "Quantity as")]
|
|
public bool PreferredResourceAllocation { get; set; }
|
|
|
|
[Display(Name = "Totals as")]
|
|
public bool PreferredTotalsDisplaying { get; set; }
|
|
|
|
[Display(Name = "First Name")]
|
|
public string FirstName { get; set; }
|
|
|
|
[Display(Name = "Last Name")]
|
|
public string LastName { get; set; }
|
|
|
|
[Display(Name = "User ID")]
|
|
public string UserName { get; set; }
|
|
|
|
|
|
public bool DomainUser { get; set; }
|
|
}
|
|
|
|
public class LoginViewModel
|
|
{
|
|
[Required]
|
|
[Display(Name = "User name")]
|
|
public string UserName { get; set; }
|
|
|
|
[Required]
|
|
[DataType(DataType.Password)]
|
|
[Display(Name = "Password")]
|
|
public string Password { get; set; }
|
|
|
|
[Display(Name = "Remember me?")]
|
|
public bool RememberMe { get; set; }
|
|
}
|
|
|
|
public class RegisterViewModel
|
|
{
|
|
[Required]
|
|
[Display(Name = "User name")]
|
|
public string UserName { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(100, ErrorMessage = "The {0} must be at least {2} characters long.", MinimumLength = 6)]
|
|
[DataType(DataType.Password)]
|
|
[Display(Name = "Password")]
|
|
public string Password { get; set; }
|
|
|
|
[DataType(DataType.Password)]
|
|
[Display(Name = "Confirm password")]
|
|
[Compare("Password", ErrorMessage = "The password and confirmation password do not match.")]
|
|
public string ConfirmPassword { get; set; }
|
|
}
|
|
public class ForgotPasswordModel
|
|
{
|
|
[DataType(DataType.EmailAddress)]
|
|
[Display(Name = "Email")]
|
|
[Required]
|
|
public string Email { get; set; }
|
|
|
|
public bool Sent { get; set; }
|
|
}
|
|
|
|
public class RestorePasswordModel
|
|
{
|
|
public Guid Token { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(100, ErrorMessage = "The {0} must be at least {2} characters long.", MinimumLength = 6)]
|
|
[DataType(DataType.Password)]
|
|
[Display(Name = "Password")]
|
|
public string Password { get; set; }
|
|
|
|
[DataType(DataType.Password)]
|
|
[Display(Name = "Confirm password")]
|
|
[Compare("Password", ErrorMessage = "The password and confirmation password do not match.")]
|
|
public string ConfirmPassword { get; set; }
|
|
|
|
public bool Restored { get; set; }
|
|
}
|
|
}
|