@using (Html.BeginForm("Activate", "Account", FormMethod.Post, new { @class = "form-horizontal", role = "form" }))
{
@Html.AntiForgeryToken()
Sign In to your account
@Html.HiddenFor(model => model.UserId)
@Html.TextBoxFor(m => m.UserName, new { @class = "form-control input-lg", @placeholder = "Username", @id = "username_id", @readonly = "readonly" })
@Html.TextBoxFor(m => m.Email, new { @class = "form-control input-lg", @placeholder = "Username", @id = "username_id", @readonly = "readonly" })
@Html.PasswordFor(m => m.Password, new { @class = "form-control input-lg", @placeholder = "Password", @id = "password_id" })
@Html.ValidationMessageFor(m => m.Password)
@Html.PasswordFor(m => m.ConfirmationPassword, new { @class = "form-control input-lg", @placeholder = "Password confirmation", @id = "password_confirmation_id" })
@Html.ValidationMessageFor(m => m.ConfirmationPassword)
@*
@Html.ActionLink("Register", "Register") if you don't have a local account.
*@
}
@*
Sign Up with Facebook*@
@*@Html.Partial("_ExternalLoginsStrippedPartial", new { Action = "ExternalLogin", ReturnUrl = ViewBag.ReturnUrl })*@