Toggle navigation
Toggle navigation
This project
Loading...
Sign in
201side
/
floater
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
3
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
robin*
2020-12-09 19:54:22 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
1fdbde3aa7212d6a67e9d3a7124608a28023b1e5
1fdbde3a
1 parent
b8bfb2f5
Builds for 1 pipeline
failed
in 0 seconds
스레드 작성 모달 추가
Changes
1
Builds
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
1 deletions
src/views/threadslist.handlebars
src/views/threadslist.handlebars
View file @
1fdbde3
...
...
@@ -13,4 +13,26 @@
</td>
</tr>
{{/
each
}}
</table>
\ No newline at end of file
</table>
<button
type=
"button"
class=
"btn btn-primary"
data-bs-toggle=
"modal"
data-bs-target=
"#modal-create"
>
새 스레드 추가
</button>
<div
class=
"modal fade"
id=
"modal-create"
tabindex=
"-1"
aria-labelledby=
"label-modal-create"
aria-hidden=
"true"
>
<div
class=
"modal-dialog"
>
<div
class=
"modal-content"
>
<div
class=
"modal-header"
>
<h5
class=
"modal-title"
id=
"label-modal-create"
>
새 스레드 추가
</h5>
<button
type=
"button"
class=
"btn-close"
data-bs-dismiss=
"modal"
aria-label=
"Close"
></button>
</div>
<div
class=
"modal-body"
>
<form
method=
"post"
>
<div
class=
"form-floating"
>
<input
type=
"text"
id=
"input-title"
name=
"title"
class=
"form-control"
required
>
<label
for=
"input-title"
>
제목
</label>
</div>
</form>
</div>
<div
class=
"modal-footer"
>
<button
type=
"button"
class=
"btn btn-primary"
>
작성
</button>
</div>
</div>
</div>
</div>
\ No newline at end of file
...
...
Please
register
or
login
to post a comment