mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-29 15:01:45 +03:00
Added tag tag1 for changeset 4c285537b335
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
@model MyFriendsAround.Web.Models.LogOnModel
|
||||
|
||||
@{
|
||||
ViewBag.Title = "Log On";
|
||||
}
|
||||
|
||||
<h2>Log On</h2>
|
||||
<p>
|
||||
Please enter your username and password. @Html.ActionLink("Register", "Register") if you don't have an account.
|
||||
</p>
|
||||
|
||||
<script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script>
|
||||
<script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script>
|
||||
|
||||
@Html.ValidationSummary(true, "Login was unsuccessful. Please correct the errors and try again.")
|
||||
|
||||
@using (Html.BeginForm()) {
|
||||
<div>
|
||||
<fieldset>
|
||||
<legend>Account Information</legend>
|
||||
|
||||
<div class="editor-label">
|
||||
@Html.LabelFor(m => m.UserName)
|
||||
</div>
|
||||
<div class="editor-field">
|
||||
@Html.TextBoxFor(m => m.UserName)
|
||||
@Html.ValidationMessageFor(m => m.UserName)
|
||||
</div>
|
||||
|
||||
<div class="editor-label">
|
||||
@Html.LabelFor(m => m.Password)
|
||||
</div>
|
||||
<div class="editor-field">
|
||||
@Html.PasswordFor(m => m.Password)
|
||||
@Html.ValidationMessageFor(m => m.Password)
|
||||
</div>
|
||||
|
||||
<div class="editor-label">
|
||||
@Html.CheckBoxFor(m => m.RememberMe)
|
||||
@Html.LabelFor(m => m.RememberMe)
|
||||
</div>
|
||||
|
||||
<p>
|
||||
<input type="submit" value="Log On" />
|
||||
</p>
|
||||
</fieldset>
|
||||
</div>
|
||||
}
|
||||
Reference in New Issue
Block a user