Update thread.ejs

This commit is contained in:
tokmak0 2022-08-31 15:28:52 +03:00 committed by GitHub
parent 51a641e5da
commit c980dc40de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 3 deletions

View File

@ -94,8 +94,12 @@
<% if (user){ %>
<div class="message">
<form id="send">
<textarea rows="4" cols="100" name="content"></textarea>
<form id="send" style="width:100%">
<textarea rows="4"
style="
width: 100%;
margin: 10px;
border: 2px solid #e3e3e3;" name="content"></textarea>
<input name="threadID" type="hidden" value="<%= thread.id %>"></input>
<input name="page" type="hidden" value="<%= page %>"></input>
@ -153,4 +157,4 @@
</body>
</html>
</html>