评论表/提交有问题吗?

Please note: the site I'm working with doesn't allow the use of Javascript. It's a huge pain, but I can't do anything about it. I'm looking for (hopefully) a work around for my problem.

This is a bit of a weird situation, so I'm going to try and explain my problem as best as possible without getting too complicated.

I write style sheets and stuff for this site I go on called AniRoleplay, which is basically an cheap knock-off version of the old Myspace. I was making a custom bulletin, trying to move the comment section to another location on the page. To do that, I copy/pasted the form that the site uses by default to post comments.

That code is as follows:

<table align='center' class='txt_label'>
<tr>
    <td width='100%'><p align='left'> <font face='Verdana' color='#000000' size='2'> <b>Add a Comment :</b> </font> </td>
</tr>
<tr>
    <td width='100%'><p align='left'>
            <textarea id='textarea1' name='comment_text' rows='5' cols='30' style='width:700; height:75'></textarea>
            <br>
            <br>
            <b><font color='black'>Your image will display properly if this URL ends in .GIF, .PNG or .JPG. Anything else will not work.</font></b><br>
            <input name='image' type='text' size='95' style='width:700px' placeholder='Image URL --- EXAMPLE: http://i.imgur.com/s7BBFmm.JPG'/>
    </td>
</tr>
<tr> </tr>
<tr>
    <td width='100%'><p align='left'>
            <INPUT class=flat id=Submit onclick=document.theForm.details.value=idContent.document.body.innerHTML; type=submit value='Add Comment' name=Submit>
    </td>
</tr>
</table>

However, when I added it and tested it.. I got this error from the site:

"You did not enter any text for your comment."

The result I'm looking for is something like this:

http://i.stack.imgur.com/1XaOg.jpg

I got that result by accident, but had no idea how I had gotten it. I ended up going back to an older version of the layout though because the submit button wasn't responding, but even when I did get it to respond, I kept constantly running into the "no text" error.

Last but not least, here's the link to the CodePen I have been working on for this layout: http://codepen.io/Peechiee/pen/qOBQZe?editors=110

I have seriously run out of ideas here. D: I don't know anything about PHP (I'm self taught and am pretty much only familiar with CSS and HTML) so I don't know if that is relevant to the situation but I'd really really appreciate some help.

Thanks in advance!