The next generation of the Teknik Services. Written in ASP.NET.
https://www.teknik.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.2 KiB
44 lines
1.2 KiB
7 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.Linq;
|
||
|
using System.Web;
|
||
|
using System.Web.Security;
|
||
|
using Teknik.Helpers;
|
||
|
using Teknik.Models;
|
||
|
|
||
7 years ago
|
namespace Teknik.Areas.Profile.ViewModels
|
||
7 years ago
|
{
|
||
|
public class LoginViewModel
|
||
|
{
|
||
|
private TeknikEntities db = new TeknikEntities();
|
||
|
|
||
|
[Required]
|
||
|
[Display(Name = "Username")]
|
||
|
public string Username { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[Display(Name = "Password")]
|
||
|
[DataType(DataType.Password)]
|
||
|
public string Password { get; set; }
|
||
|
|
||
|
[Display(Name = "Remember Me")]
|
||
|
public bool RememberMe { get; set; }
|
||
|
|
||
|
public bool IsValid()
|
||
|
{
|
||
|
return IsValid(Username, Password);
|
||
|
}
|
||
|
|
||
|
public bool IsValid(string username, string password)
|
||
|
{
|
||
|
var myUser = db.Users.Where(b => b.Username == username).FirstOrDefault();
|
||
|
|
||
|
if (myUser != null && !string.IsNullOrEmpty(username) && !string.IsNullOrEmpty(password))
|
||
|
{
|
||
|
return (myUser.HashedPassword == SHA384.Hash(username, password));
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
}
|