Index.cshtml 347 B

1234567891011121314151617
  1. @{
  2. ViewBag.Title = "Index";
  3. Layout = "~/Views/Shared/_Layout.cshtml";
  4. }
  5. @model GreenTree.Nachtragsmanagement.Web.Models.Login.LoginModel
  6. <h2>Login</h2>
  7. @using (Html.BeginForm())
  8. {
  9. <h5>Benutzername:</h5>
  10. @Html.EditorFor(m => m.Username)
  11. <h5>Passwort</h5>
  12. @Html.PasswordFor(m => m.Password)
  13. <input type="submit" value="Login" />
  14. }