Hello, I created a login screen in asp.net mvc but remember me I can't do it, can you help me?
<div style="position:absolute;transform:translate(-50%,-50%);left:50%;top:50%">
@using (Html.BeginForm("AdminLogin", "Menu", FormMethod.Post))
{
<h1 class="h3 mb-3 font-weight-normal">Lütfen Giriş Yapınız</h1>
<label for="inputEmail" class="sr-only">Email</label>
<input type="text" class="form-control" name="KULLANICIADI" placeholder="Kullanıcı Adını Giriniz" style="width:300px" required autofocus>
<br />
<label for="inputPassword" class="sr-only">Şifre</label>
<input type="password" name="SIFRE" placeholder="Şifrenizi Girniz" class="form-control" style="width:300px" required>
<br />
<label>
@Html.CheckBox("BeniHatirla")
Beni Hatırla
</label>
<br />
<button class="btn btn-lg btn-primary btn-block" type="submit" style="background-color: #42536c!important; width:300px" autofocus>Giriş</button>
}
</div>