Created
May 11, 2017 10:01
-
-
Save ErikHen/53c7de21e1d15eff60282391061588ce to your computer and use it in GitHub Desktop.
Episerver Mixed-mode auth. Login view
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class LoginViewModel | |
{ | |
[Required] | |
[Display(Name = "Username")] | |
public string Username { get; set; } | |
[Required] | |
[DataType(DataType.Password)] | |
[Display(Name = "Password")] | |
[AllowHtml] | |
public string Password { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment