Add authentication

This commit is contained in:
Robert Marshall 2020-01-03 13:32:20 +00:00
parent 8f0c4c0a45
commit a2d84e182d
11 changed files with 206 additions and 21 deletions

View file

@ -0,0 +1,6 @@
namespace Website.ViewModels {
public class LoginViewModel {
public string ReturnUrl { get; set; }
public bool FailedAttempt { get; set; }
}
}