diff options
| author | julian laplace <julescarbon@gmail.com> | 2022-10-27 22:36:20 +0200 |
|---|---|---|
| committer | julian laplace <julescarbon@gmail.com> | 2022-10-27 22:36:20 +0200 |
| commit | 61b119ecbddf2275f39a91fa252e071c4767d863 (patch) | |
| tree | 106e02593edaf66865fc5f3a0924a2f8abccb3d5 /views | |
| parent | eea34be30711fc9de9a65dce772b0f8b42541f9c (diff) | |
play music button
Diffstat (limited to 'views')
| -rw-r--r-- | views/hootstream/templates.ejs | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/views/hootstream/templates.ejs b/views/hootstream/templates.ejs index e3bb612..2f6de87 100644 --- a/views/hootstream/templates.ejs +++ b/views/hootstream/templates.ejs @@ -64,5 +64,28 @@ <div class="image"><a href="{{link}}">[{{filename}}, {{size}}]</a></div> </script> -<script class="hootImages" type="text/html"> -</script>
\ No newline at end of file +<script class="thread-form" type="text/html"> + <form> + <input type="text" name="title" placeholder="Enter a title"> + <textarea name="comment" placeholder="Add a comment"></textarea> + <div class="inputs"> + <input name="files" type="file" multiple> + <select name="keyword" id="keywords"></select> + <input type="submit" value="POST" /> + <div class="loader"></div> + </div> + <div class='errors'></div> + </form> +</script> + +<script class="comment-form" type="text/html"> + <form> + <textarea name="comment" placeholder="Add a comment"></textarea> + <div class="inputs"> + <input name="files" type="file" multiple> + <input type="submit" value="POST" /> + <div class="loader"></div> + </div> + <div class='errors'></div> + </form> +</script> |
