Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @model ReservationViewModel
- <h2>Създаване на резервация</h2>
- <form asp-action="Create">
- <div class="form-group">
- <label for="CustomerName">Име на клиент</label>
- <input asp-for="UserId" class="form-control" />
- </div>
- <div class="form-group">
- <label for="ReservationDate">Дата на резервацията</label>
- <input asp-for="ReservationDate" class="form-control" placeholder="dd-MM-yyyy HH:mm" />
- </div>
- <div class="form-group">
- <label for="NumberOfGuests">Брой гости</label>
- <input asp-for="NumberOfGuests" class="form-control" />
- </div>
- <div class="form-group">
- <label for="TableId">Маса</label>
- <select asp-for="TableId" class="form-control" asp-items="ViewBag.Tables"></select>
- </div>
- <button type="submit" class="btn btn-primary">Създаване</button>
- </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement