I have this login form done in CSS and HTML, can I use it in ASP.NET for authentication?
The only change I thought of doing was for form
within:
@using (Html.BeginForm("Login", "Conta", new { ReturnUrl = ViewBag.ReturnUrl }, FormMethod.Post, new { @class = "form-horizontal", role = "form" })){
}
And pass as parameters name=senha
, name=usuario
and name=lembrar-me
.