Showing
1 changed file
with
22 additions
and
0 deletions
... | @@ -14,3 +14,25 @@ | ... | @@ -14,3 +14,25 @@ |
14 | </tr> | 14 | </tr> |
15 | {{/each}} | 15 | {{/each}} |
16 | </table> | 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 | ... | ... |
-
Please register or login to post a comment