WebAppInitializer

Html code posted
created at 29 Oct 10:04, updated at 09 Nov 10:48

Edit | Back
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
                <form th:action="@{/posts}" th:object="${Post}" 
                  action="/posts" th:method="POST" class="m-3">
                  <fieldset>
                    <div class="row ">
                      <div class="input-group input-group-rounded col-sm-3 h-75">
                        <input class="form-control" placeholder="Tytuł" 
                        type="text"   name="title" 
                        required="required"   />
                      </div>
                      <div class="input-group input-group-rounded col-sm-3 h-75">
                        <input class="form-control" placeholder="Opis" 
                        type="text"   name="description" 
                        required="required"  />
                      </div>
                      <div class="input-group input-group-rounded col-sm-3 h-75">
                        <input class="form-control" placeholder="Źródło" 
                        type="text"  name="source" 
                        required="required"  />
                      </div>
                      <div class="input-group input-group-rounded col-sm-3 h-75">
                        <input class="btn btn-hero-success main-btn w-100 " 
                        type="submit" value="Dodaj" />
                      </div>
                    </div>
                  </fieldset>
                  <fieldset>
                  </fieldset>
                </form>
1.14 KB in 3 ms with coderay