Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @model OverTime.Models.UserModel
- @{
- ViewBag.Title = "CreateUser";
- Layout = "~/Views/Shared/_Layout.cshtml";
- }
- <h2>CreateUser</h2>
- @using (Html.BeginForm())
- {
- @Html.AntiForgeryToken()
- <div class="form-horizontal">
- <h4>UserModel</h4>
- <hr />
- @Html.ValidationSummary(true)
- <div class="form-group">
- @Html.LabelFor(model => model.username, new { @class = "control-label col-md-2" })
- <div class="col-md-10">
- @Html.EditorFor(model => model.username)
- @Html.ValidationMessageFor(model => model.username)
- </div>
- </div>
- <div class="form-group">
- @Html.LabelFor(model => model.email, new { @class = "control-label col-md-2" })
- <div class="col-md-10">
- @Html.EditorFor(model => model.email)
- @Html.ValidationMessageFor(model => model.email)
- </div>
- </div>
- <div class="form-group">
- @Html.LabelFor(model => model.password, new { @class = "control-label col-md-2" })
- <div class="col-md-10">
- @Html.EditorFor(model => model.password)
- @Html.ValidationMessageFor(model => model.password)
- </div>
- </div>
- <div class="form-group">
- <div class="col-md-offset-2 col-md-10">
- <input type="submit" value="Create" class="btn btn-default" />
- </div>
- </div>
- </div>
- }
- <div>
- @Html.ActionLink("Back to List", "Index")
- </div>
Advertisement
Add Comment
Please, Sign In to add comment