mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-02-01 01:29:58 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4000 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
002afdd250
commit
b84f233c65
3 changed files with 39 additions and 28 deletions
|
|
@ -50,31 +50,38 @@
|
||||||
<div class="boardWrite commentEditor">
|
<div class="boardWrite commentEditor">
|
||||||
|
|
||||||
<!--@if(!$is_logged)-->
|
<!--@if(!$is_logged)-->
|
||||||
|
<div>
|
||||||
<div class="inputItem">
|
<div class="inputItem">
|
||||||
<input type="text" name="nick_name" value="{$oComment->get('nick_name')}" class="userName inputTypeText" id="userName"/>
|
|
||||||
<label for="userName">{$lang->writer}</label>
|
<label for="userName">{$lang->writer}</label>
|
||||||
|
<input type="text" name="nick_name" value="{$oComment->get('nick_name')}" class="userName inputTypeText" id="userName"/>
|
||||||
</div>
|
</div>
|
||||||
<div class="inputItem">
|
<div class="inputItem">
|
||||||
<input type="password" name="password" value="" id="userPw" class="userPw inputTypeText" />
|
|
||||||
<label for="userPw">{$lang->password}</label>
|
<label for="userPw">{$lang->password}</label>
|
||||||
|
<input type="password" name="password" value="" id="userPw" class="userPw inputTypeText" />
|
||||||
</div>
|
</div>
|
||||||
<div class="inputItem">
|
<div class="inputItem">
|
||||||
<input type="text" name="email_address" value="{htmlspecialchars($oComment->get('email_address'))}" id="emailAddress" class="emailAddress inputTypeText"/>
|
|
||||||
<label for="emailAddress">{$lang->email_address}</label>
|
<label for="emailAddress">{$lang->email_address}</label>
|
||||||
|
<input type="text" name="email_address" value="{htmlspecialchars($oComment->get('email_address'))}" id="emailAddress" class="emailAddress inputTypeText"/>
|
||||||
</div>
|
</div>
|
||||||
<div class="inputItem">
|
<div class="inputItem">
|
||||||
<input type="text" name="homepage" value="{htmlspecialchars($oComment->get('homepage'))}" id="homePage" class="homePage inputTypeText"/>
|
|
||||||
<label for="homePage">{$lang->homepage}</label>
|
<label for="homePage">{$lang->homepage}</label>
|
||||||
|
<input type="text" name="homepage" value="{htmlspecialchars($oComment->get('homepage'))}" id="homePage" class="homePage inputTypeText"/>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="clear"></div>
|
||||||
|
</div>
|
||||||
<!--@end-->
|
<!--@end-->
|
||||||
<div class="inputItem">
|
<dl class="option">
|
||||||
<!--@if($is_logged)-->
|
<!--@if($is_logged)-->
|
||||||
|
<dd>
|
||||||
<input type="checkbox" name="notify_message" value="Y" <!--@if($oComment->useNotify())-->checked="checked"<!--@end--> id="notify_message" />
|
<input type="checkbox" name="notify_message" value="Y" <!--@if($oComment->useNotify())-->checked="checked"<!--@end--> id="notify_message" />
|
||||||
<label for="notify_message">{$lang->notify}</label>
|
<label for="notify_message">{$lang->notify}</label>
|
||||||
|
</dd>
|
||||||
<!--@end-->
|
<!--@end-->
|
||||||
<input type="checkbox" name="is_secret" value="Y" <!--@if($oComment->isSecret())-->checked="checked"<!--@end--> id="is_secret" />
|
<dd>
|
||||||
<label for="is_secret">{$lang->secret}</label>
|
<input type="checkbox" name="is_secret" value="Y" <!--@if($oComment->isSecret())-->checked="checked"<!--@end--> id="is_secret" />
|
||||||
</div>
|
<label for="is_secret">{$lang->secret}</label>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
|
||||||
<div class="editor">{$oComment->getEditor()}</div>
|
<div class="editor">{$oComment->getEditor()}</div>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -220,11 +220,12 @@ Jeong, Chan Myeong 070601~070630
|
||||||
|
|
||||||
.boardWrite { border:1px solid #e0e1db; padding-bottom:10px;}
|
.boardWrite { border:1px solid #e0e1db; padding-bottom:10px;}
|
||||||
.boardWrite fieldset { border:none; }
|
.boardWrite fieldset { border:none; }
|
||||||
.boardWrite .inputItem { margin:10px 10px 0 10px; }
|
.boardWrite .inputItem { margin:10px 0 0 5px; float:left; }
|
||||||
.boardWrite .inputItem .userName {width:220px; margin-right:10px; }
|
.boardWrite .inputItem label { margin:0 0 3px 0; padding;0; display:block; white-space:nowrap;}
|
||||||
.boardWrite .inputItem .userPw {width:220px; margin-right:10px; }
|
.boardWrite .inputItem .userName {width:100px; margin-right:10px; }
|
||||||
.boardWrite .inputItem .emailAddress {width:220px; margin-right:10px; }
|
.boardWrite .inputItem .userPw {width:100px; margin-right:10px; }
|
||||||
.boardWrite .inputItem .homePage {width:220px; margin-right:10px; }
|
.boardWrite .inputItem .emailAddress {width:100px; margin-right:10px; }
|
||||||
|
.boardWrite .inputItem .homePage {width:100px; margin-right:10px; }
|
||||||
|
|
||||||
.boardWrite .title { margin-top:5px; }
|
.boardWrite .title { margin-top:5px; }
|
||||||
.boardWrite .title .category { margin-left:10px; }
|
.boardWrite .title .category { margin-left:10px; }
|
||||||
|
|
|
||||||
|
|
@ -10,21 +10,24 @@
|
||||||
|
|
||||||
<div class="boardWrite">
|
<div class="boardWrite">
|
||||||
<!--@if(!$is_logged)-->
|
<!--@if(!$is_logged)-->
|
||||||
<div class="inputItem">
|
<div>
|
||||||
<input type="text" name="nick_name" value="{$oDocument->getNickName()}" class="userName inputTypeText" id="userName"/>
|
<div class="inputItem">
|
||||||
<label for="userName">{$lang->writer}</label>
|
<label for="userName">{$lang->writer}</label>
|
||||||
</div>
|
<input type="text" name="nick_name" value="{$oDocument->getNickName()}" class="userName inputTypeText" id="userName"/>
|
||||||
<div class="inputItem">
|
</div>
|
||||||
<input type="password" name="password" value="" id="userPw" class="userPw inputTypeText" />
|
<div class="inputItem">
|
||||||
<label for="userPw">{$lang->password}</label>
|
<label for="userPw">{$lang->password}</label>
|
||||||
</div>
|
<input type="password" name="password" value="" id="userPw" class="userPw inputTypeText" />
|
||||||
<div class="inputItem">
|
</div>
|
||||||
<input type="text" name="email_address" value="{htmlspecialchars($oDocument->get('email_address'))}" id="emailAddress" class="emailAddress inputTypeText"/>
|
<div class="inputItem">
|
||||||
<label for="emailAddress">{$lang->email_address}</label>
|
<label for="emailAddress">{$lang->email_address}</label>
|
||||||
</div>
|
<input type="text" name="email_address" value="{htmlspecialchars($oDocument->get('email_address'))}" id="emailAddress" class="emailAddress inputTypeText"/>
|
||||||
<div class="inputItem">
|
</div>
|
||||||
<input type="text" name="homepage" value="{htmlspecialchars($oDocument->get('homepage'))}" id="homePage" class="homePage inputTypeText"/>
|
<div class="inputItem">
|
||||||
<label for="homePage">{$lang->homepage}</label>
|
<label for="homePage">{$lang->homepage}</label>
|
||||||
|
<input type="text" name="homepage" value="{htmlspecialchars($oDocument->get('homepage'))}" id="homePage" class="homePage inputTypeText"/>
|
||||||
|
</div>
|
||||||
|
<div class="clear"></div>
|
||||||
</div>
|
</div>
|
||||||
<!--@end-->
|
<!--@end-->
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue