Changeset 194776a for src/main/resources/templates/myProfile.html
- Timestamp:
- 09/03/21 18:34:05 (3 years ago)
- Branches:
- master
- Children:
- 5306751
- Parents:
- f8007b3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/myProfile.html
rf8007b3 r194776a 241 241 <a class="btn btn-sm btn-outline-secondary" 242 242 th:href="@{/post(postid=${post.id})}">Open</a> 243 <button type="button" class="btn btn- primary" data-bs-toggle="modal"244 th:data-bs-target="'# a' + ${post.id}">243 <button type="button" class="btn btn-sm btn-success" data-bs-toggle="modal" 244 th:data-bs-target="'#m' + ${post.id}"> 245 245 Add collected funds 246 246 </button> … … 255 255 </div> 256 256 </div> 257 <div class="modal fade" th:id="' a' + ${post.id}" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1"257 <div class="modal fade" th:id="'m' + ${post.id}" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" 258 258 aria-labelledby="staticBackdropLabel" aria-hidden="true"> 259 259 <div class="modal-dialog modal-dialog-centered"> … … 267 267 <form th:id="'my-form' + ${post.id}" th:action="@{/addFunds(postid=${post.id})}" method="post"> 268 268 <div class="row"> 269 <div class="col"> 270 <select class="input-group-text" name="type"> 269 <div class="col-md-6"> 270 <label for="type" class="form-label">Type</label> 271 <select id="type" class="form-select" name="type"> 271 272 <option value="Bank donation">Bank donation</option> 272 273 <option value="Phone donation">Phone donation</option> 273 274 </select> 274 275 </div> 275 <div class="col"> 276 <input type="number" class="input-group-text" name="amount"> 276 <div class="col-md-6"> 277 <label for="amount" class="form-label">Amount</label> 278 <input id="amount" type="number" class="form-control" name="amount"> 277 279 </div> 278 280 </div>
Note:
See TracChangeset
for help on using the changeset viewer.