mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 10:41:40 +09:00
Module selector popup UI fixed. git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@12577 201d5d3c-b55e-5fd7-737f-ddc643e51545
29 lines
1.3 KiB
HTML
29 lines
1.3 KiB
HTML
<load target="../../../../common/css/bootstrap.min.css" />
|
|
<load target="../../../../common/css/bootstrap-responsive.min.css" />
|
|
<load target="css/communication.css" />
|
|
<load target="js/communication.js" />
|
|
<div class="page-header">
|
|
<h1>
|
|
<!--@if($friend_group->friend_group_srl)-->
|
|
{$lang->cmd_rename_friend_group}
|
|
<!--@else-->
|
|
{$lang->cmd_add_friend_group}
|
|
<!--@end-->
|
|
</h1>
|
|
</div>
|
|
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
|
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
|
</div>
|
|
<form ruleset="addFriendGroup" action="./" method="post" class="form-horizontal xc">
|
|
<input type="hidden" name="module" value="communication" />
|
|
<input type="hidden" name="act" value="procCommunicationAddFriendGroup" />
|
|
<input type="hidden" name="friend_group_srl" value="{$friend_group->friend_group_srl}" />
|
|
<div class="control-group">
|
|
<label for="title" class="control-label">{$lang->msg_insert_group_name}</label>
|
|
<div class="controls"><input name="title" id="title" type="text" value="{htmlspecialchars($friend_group->title)}"/></div>
|
|
</div>
|
|
<div class="btnArea">
|
|
<input cond="$friend_group->friend_group_srl" type="submit" value="{$lang->cmd_modify}" class="btn btn-inverse" />
|
|
<input cond="!$friend_group->friend_group_srl" type="submit" value="{$lang->cmd_insert}" class="btn btn-inverse" />
|
|
</div>
|
|
</form>
|