27 lines
692 B
Plaintext
27 lines
692 B
Plaintext
@model MileageTraker.Web.ViewModels.Account.LoginViewModel
|
|
|
|
@{
|
|
ViewBag.Title = "Log in";
|
|
Layout = "~/Views/Shared/_Layout.login.cshtml";
|
|
}
|
|
@section Styles
|
|
{
|
|
<link href="@Url.Content("~/Content/Account.Login.css")" rel="stylesheet" type="text/css" />
|
|
}
|
|
|
|
@using (Html.BeginForm("Login", "Account", new { ViewBag.ReturnUrl }, FormMethod.Post, new {@class = "form-login"})) {
|
|
|
|
<div class="header"></div>
|
|
|
|
<h2>@ViewBag.Title</h2>
|
|
|
|
@Html.AntiForgeryToken()
|
|
@Html.Partial("_ValidationSummary")
|
|
|
|
<fieldset>
|
|
<legend></legend>
|
|
@Html.EditorForModel()
|
|
<input type="submit" value="Log in" class="btn btn-primary" />
|
|
</fieldset>
|
|
}
|