Skip to content

Instantly share code, notes, and snippets.

@sabbour
Last active August 29, 2015 14:03
Show Gist options
  • Save sabbour/9ccecc6bebb97cfd47b9 to your computer and use it in GitHub Desktop.
Save sabbour/9ccecc6bebb97cfd47b9 to your computer and use it in GitHub Desktop.
Adding the Country Code, Phone and PIN properties to the RegisterViewModel model
public class RegisterViewModel
{
[Required]
[EmailAddress]
[Display(Name = "Email")]
public string Email { 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 string CountryCode { get; set; }
public string Phone { get; set; }
public int PIN { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment