| 1234567891011121314151617 |
- @{
- ViewBag.Title = "Index";
- Layout = "~/Views/Shared/_Layout.cshtml";
- }
- @model GreenTree.Nachtragsmanagement.Web.Models.Login.LoginModel
- <h2>Login</h2>
- @using (Html.BeginForm())
- {
- <h5>Benutzername:</h5>
- @Html.EditorFor(m => m.Username)
- <h5>Passwort</h5>
- @Html.PasswordFor(m => m.Password)
- <input type="submit" value="Login" />
- }
|