robin*
Builds for 1 pipeline failed in 0 seconds

스레드 작성 모달 추가

...@@ -13,4 +13,26 @@ ...@@ -13,4 +13,26 @@
13 </td> 13 </td>
14 </tr> 14 </tr>
15 {{/each}} 15 {{/each}}
16 -</table>
...\ No newline at end of file ...\ No newline at end of file
16 +</table>
17 +<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#modal-create">새 스레드 추가</button>
18 +<div class="modal fade" id="modal-create" tabindex="-1" aria-labelledby="label-modal-create" aria-hidden="true">
19 + <div class="modal-dialog">
20 + <div class="modal-content">
21 + <div class="modal-header">
22 + <h5 class="modal-title" id="label-modal-create">새 스레드 추가</h5>
23 + <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
24 + </div>
25 + <div class="modal-body">
26 + <form method="post">
27 + <div class="form-floating">
28 + <input type="text" id="input-title" name="title" class="form-control" required>
29 + <label for="input-title">제목</label>
30 + </div>
31 + </form>
32 + </div>
33 + <div class="modal-footer">
34 + <button type="button" class="btn btn-primary">작성</button>
35 + </div>
36 + </div>
37 + </div>
38 +</div>
...\ No newline at end of file ...\ No newline at end of file
......