<?php 
}
?>
            
            <tr>
                <td colspan="2">
                    <br><h4>Comment</h4>
                    
                    <?php 
echo \Fuel\Core\Form::open(array());
?>
                    <fieldset>
                        <div class="control-group">
                            <div class="controls">
                                <?php 
echo \Fuel\Core\Form::textarea('comment', '', array('class' => 'form-control', 'rows' => 2, 'cols' => 50, 'required' => ''));
?>
                                <?php 
echo \Fuel\Core\Form::hidden('project_task_id', $task->id);
?>
                                <?php 
echo \Fuel\Core\Form::hidden('user_id', $user_id);
?>
                            </div>
                        </div>

                        <div class="control-group"> 
                            <?php 
echo \Fuel\Core\Form::submit('submit', 'Submit Comment', array('class' => 'btn btn-success'));
?>
                        </div>
示例#2
0
<?php 
echo Form::label('メールアドレス', 'email');
?>
(*) :
<?php 
echo Form::input('email', Input::post('email'));
?>
</p>

<p>
<?php 
echo Form::label('コメント', 'comment');
?>
(*) :
<?php 
echo Form::textarea('comment', Input::post('comment'), array('cols' => 70, 'rows' => 6));
?>
</p>


<div class="actions">
<?php 
echo Form::submit('submit', '確認');
?>
</div>

<p>
<?php 
echo Form::close();
?>
</p>
    ?>
 </option>
                        <?php 
}
?>
                    </select>
                </div>
            </div>
        
        <div class="control-group">
            <?php 
echo Form::label('Additional Instructions', 'comment', array('class' => 'control-label input-sm'));
?>
            <div class="controls">
            <?php 
echo \Fuel\Core\Form::textarea('comment', Input::post('comment', isset($projecttask) ? $projecttask->comment : ''), array('class' => 'form-control', 'rows' => 4));
?>
            </div>
        </div>
	    
	<?php 
if (isset($back_url)) {
    ?>
	    <div class="control-group control-group-sm">
		    <?php 
    echo Html::anchor($back_url, '&laquo; Back', array('class' => 'btn btn-default'));
    ?>
 &nbsp;
		    <?php 
    echo Form::submit('submit', 'Save', array('class' => 'btn btn-success'));
    ?>
示例#4
0
					3L</label>
				<div class="input-group">
					<div class="input-group-addon">入社時貸出</div>
					<?php 
echo \Fuel\Core\Form::input('the_loan', \Fuel\Core\Input::post('the_loan', isset($interviews) ? $interviews->the_loan : ''), array('class' => 'form-control', 'size' => '5'));
?>
					<div class="input-group-addon">枚</div>
				</div>
				<label id="form_the_loan-error" class="error" for="form_the_loan"></label>
			</td>
		</tr>
		<tr>
			<th class="text-right">担当者記入</th>
			<td>
				<?php 
echo \Fuel\Core\Form::textarea('notes', \Fuel\Core\Input::post('notes', isset($interviews) ? $interviews->notes : ''), array('class' => 'form-control', 'cols' => '80', 'rows' => '5'));
?>
				<span class="text-info">※文字数無制限</span>
			</td>
		</tr>
	</table>

	<div class="text-center">
		<button type="submit" class="btn btn-primary btn-sm">
			<i class="glyphicon glyphicon-pencil icon-white"></i>
			保存
		</button>
	</div>
<?php 
echo \Fuel\Core\Form::close();
?>
示例#5
0
<fieldset>
    <div class="form-group">
        <?php 
echo \Fuel\Core\Form::label('Name', 'name', array('class' => 'control-label'));
?>
        <?php 
echo \Fuel\Core\Form::input('name', isset($comment->name) ? $comment->name : '', array('class' => 'form-control'));
?>
    </div>
    
    <div class="form-group">
        <?php 
echo \Fuel\Core\Form::label('Comment', 'comment', array('class' => 'control-label'));
?>
        <?php 
echo \Fuel\Core\Form::textarea('comment', Fuel\Core\Input::post('comment', isset($comment) ? $comment->comment : ''), array('class' => 'form-control'));
?>
        
    </div>
</fieldset>

<div class="actions">
    <?php 
echo \Fuel\Core\Form::hidden('message_id', isset($message) ? $message : '');
?>
    <?php 
echo \Fuel\Core\Form::submit('submit', 'Submit', array('class' => 'btn btn-primary'));
?>
</div>

<?php 
示例#6
0
			</div>
		</td>
	</tr>
	<tr>
		<th class="text-right">備考</th>
		<td>
			<?php 
echo Fuel\Core\Form::textarea('notes', isset($partner->notes) ? $partner->notes : '', array('rows' => 5, 'cols' => 80, 'class' => 'form-control'));
?>
			<label class="error" for="form_notes"></label>
			<div class="edit-before  <?php 
echo isset($is_view['notes']) ? $is_view['notes'] : '';
?>
">
				<?php 
echo \Fuel\Core\Form::textarea('notes_edit', isset($edit_partner) ? $edit_partner->notes : '', array('rows' => 5, 'cols' => 80, 'class' => 'form-control', 'disabled'));
?>
			</div>
		</td>
	</tr>
</table>

<div class="text-center">

	<button type="submit" class="btn btn-primary btn-sm">
		<i class="glyphicon glyphicon-pencil icon-white"></i>
		保存
	</button>
</div>

<?php 
示例#7
0
?>
                            <?php 
echo Form::error('mail_yourname', $error);
?>
                        </div>
                        <div class="text">
                            <?php 
echo \Fuel\Core\Form::input('mail_address', $contact_data['mail_address'], array('placeholder' => __('contact.send_mail_your_email')));
?>
                            <?php 
echo Form::error('mail_address', $error);
?>
                        </div>
                        <div class="text">
                            <?php 
echo \Fuel\Core\Form::textarea('mail_message', $contact_data['mail_message'], array('placeholder' => __('contact.send_mail_message')));
?>
                            <?php 
echo Form::error('mail_message', $error);
?>
                        </div>
                        <div class="text">
                            <input type="submit" name="main_btn_submit" value="<?php 
echo __('contact.send_mail_btn_send');
?>
"/>
                        </div>
                        <?php 
echo form::close();
?>
                    </div>
示例#8
0
?>
				</td>
			</tr>
			<tr>
				<th class="text-right">メールアドレス</th>
				<td>
					<?php 
echo isset($contact) ? $contact->mail : '';
?>
				</td>
			</tr>
			<tr>
				<th class="text-right">その他備考</th>
				<td>
					<?php 
echo \Fuel\Core\Form::textarea('content_detail', isset($contact) ? $contact->content : '', array('class' => 'imp_txt', 'cols' => '100', 'disabled', 'style' => 'border:0;background-color:#fff'));
?>
				</td>
			</tr>
		</table>

		<div class="text-center">
			<a type="button" href="<?php 
echo \Fuel\Core\Uri::base();
?>
support/contacts?<?php 
echo \Fuel\Core\Session::get('url_filter_contacts');
?>
" class="btn btn-warning btn-sm" name="back-btn">
				<i class="glyphicon glyphicon-step-backward icon-white"></i>
				戻る