source: db_tsh/Views/Home/Travel.cshtml@ 705d6f5

main
Last change on this file since 705d6f5 was 705d6f5, checked in by ardit <ardit@…>, 2 days ago

Commiting all files of project - 20250224

  • Property mode set to 100644
File size: 3.3 KB
Line 
1@model db_tsh.Models.Osi
2@{
3 ViewData["Title"] = "Travel Health Policy";
4}
5
6<div class="container mt-5">
7 <div class="row justify-content-center">
8 <div class="col-md-6">
9 <div class="card">
10 <div class="card-header bg-primary text-white">
11 <h3 class="card-title">Buy Travel Health Policy</h3>
12 </div>
13 <div class="card-body">
14 <form asp-action="Travel" method="post">
15 <div class="form-group">
16 <label for="OEmbg">OEmbg</label>
17 <input type="text" class="form-control" id="OEmbg" name="OEmbg" placeholder="Enter your id" required>
18 </div>
19 <div class="form-group">
20 <label for="name">Name</label>
21 <input type="text" class="form-control" id="name" name="name" placeholder="Enter your name" required>
22 </div>
23 <div class="form-group">
24 <label for="surname">Surname</label>
25 <input type="text" class="form-control" id="surname" name="surname" placeholder="Enter your surname" required>
26 </div>
27 <div class="form-group">
28 <label for="birthdate">Birthdate</label>
29 <input type="date" class="form-control" id="birthdate" name="birthdate" required>
30 </div>
31 <div class="form-group">
32 <label for="kontakt">Contact</label>
33 <input type="text" class="form-control" id="kontakt" name="kontakt" placeholder="Enter your contact information" required>
34 </div>
35 <div class="form-group">
36 <label for="startDate">Start Date</label>
37 <input type="date" class="form-control" id="startDate" name="startDate" required>
38 </div>
39 <div class="form-group">
40 <label for="numberOfDays">Number of Days</label>
41 <input type="number" class="form-control" id="numberOfDays" name="numberOfDays" placeholder="Enter the number of days" required>
42 </div>
43 <div class="form-group">
44 <label for="package">Package</label>
45 <select class="form-control" id="package" name="package" required>
46 <option value="">Select Package</option>
47 @if (ViewBag.Packages != null)
48 {
49 foreach (var package in ViewBag.Packages)
50 {
51 <option value="@package.Code">@package.Title</option>
52 }
53 }
54 </select>
55 </div>
56 <button type="submit" class="btn btn-primary btn-block">Submit</button>
57 </form>
58 </div>
59 </div>
60 </div>
61 </div>
62</div>
Note: See TracBrowser for help on using the repository browser.