source: trunk/reference-skin/comment_form.php @ 973

Revision 973, 483 bytes checked in by ditto, 5 years ago (diff)

댓글 수정, 답글 달기 템플릿 추가

Line 
1<? if ($comment_url): ?>
2        <form method="post" action="<?=$comment_url?>">
3        <dl>
4        <? if ($guest): ?>
5                <dt>이름</dt>
6                <dd><input type="text" name="author" value="<?=$comment_author?>" /></dd>
7
8                <dt>암호</dt>
9                <dd><input type="password" name="password" /></dd>
10        <? endif; ?>
11
12                <dt>내용</dt>
13                <dd><textarea name="body" cols="30" rows="5"><?=$comment_body?></textarea></dd>
14        </dl>
15
16        <p><input type="submit" value="댓글 달기" /></p>
17        </form>
18<? endif; ?>
Note: See TracBrowser for help on using the repository browser.