Changeset 39a45e6 for src/main/resources/templates/addFilm.html
- Timestamp:
- 02/08/23 14:41:02 (22 months ago)
- Branches:
- master
- Children:
- 632e3d8
- Parents:
- 61fed7c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/addFilm.html
r61fed7c r39a45e6 2 2 3 3 <div class="container" style="color: white"> 4 <h1 class="jumbotron-heading"> Add New Film</h1>4 <h1 class="jumbotron-heading">Додади нов филм</h1> 5 5 <div class="row"> 6 6 <div class="col-md-5"> 7 7 <form action="/home/addF" method="POST"> 8 8 <div class="form-group"> 9 <label for="name"> Name</label>9 <label for="name">Име</label> 10 10 <input type="text" 11 11 class="form-control" … … 13 13 name="name" 14 14 required 15 placeholder=" Name">15 placeholder="Име на филмот"> 16 16 </div> 17 17 <div class="form-group"> 18 <label for="duration"> Duration</label>18 <label for="duration">Траење</label> 19 19 <input type="number" 20 20 class="form-control" 21 21 id="duration" 22 22 name="duration" 23 placeholder=" Duration">23 placeholder="Траење"> 24 24 </div> 25 25 <div class="form-group"> 26 <label for="actors"> Actors</label>26 <label for="actors">Актери</label> 27 27 <input type="text" 28 28 class="form-control" 29 29 id="actors" 30 30 name="actors" 31 placeholder=" Actors">31 placeholder="Актери"> 32 32 </div> 33 33 <div class="form-group"> 34 <label for="genre"> Genre</label>34 <label for="genre">Жанр</label> 35 35 <input type="text" 36 36 class="form-control" 37 37 id="genre" 38 38 name="genre" 39 placeholder=" Genre">39 placeholder="Жанр"> 40 40 </div> <div class="form-group"> 41 <label for="age_category"> Age Category</label>41 <label for="age_category">Возрасна група</label> 42 42 <input type="text" 43 43 class="form-control" 44 44 id="age_category" 45 45 name="age_category" 46 placeholder=" Age Category">46 placeholder="Возрасна група"> 47 47 </div> 48 48 <div class="form-group"> 49 <label for="url"> Url</label>49 <label for="url">Слика</label> 50 50 <input type="url" 51 51 class="form-control" … … 55 55 </div> 56 56 <div class="form-group"> 57 <label for="director"> Director</label>57 <label for="director">Режисер</label> 58 58 <input type="text" 59 59 class="form-control" 60 60 id="director" 61 61 name="director" 62 placeholder=" Director">62 placeholder="Режисер"> 63 63 </div> 64 64 <div class="form-group"> 65 <label for="start_date"> Start Date</label>65 <label for="start_date">Почетен датум</label> 66 66 <input type="date" 67 67 class="form-control" … … 71 71 </div> 72 72 <div class="form-group"> 73 <label for="end_date"> End Date</label>73 <label for="end_date">Краен датум</label> 74 74 <input type="date" 75 75 class="form-control" … … 79 79 </div> 80 80 81 <button style="background-color: #ff5019" id="submit" type="submit" class="btn btn-primary"> Add Film</button>81 <button style="background-color: #ff5019" id="submit" type="submit" class="btn btn-primary">Додади</button> 82 82 </form> 83 83 </div> 84 84 </div> 85 <button style="background-color: #ff5019" class="btn btn-primary"><a style="color: white" href="/addFilmToCinema">Додади филм во кинотека</a></button> 86 85 87 </div> 86 88
Note:
See TracChangeset
for help on using the changeset viewer.