kopia lustrzana https://github.com/magicbug/Cloudlog
54 wiersze
1.9 KiB
PHP
54 wiersze
1.9 KiB
PHP
|
|
<div class="container notes">
|
|
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<h2 class="card-title"><?php echo lang('notes_create_note'); ?></h2>
|
|
<ul class="nav nav-tabs card-header-tabs">
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="<?php echo site_url('notes'); ?>"><?php echo lang('notes_menu_notes'); ?></a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link active" href="<?php echo site_url('notes/add'); ?>"><?php echo lang('notes_create_note'); ?></a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
|
|
<?php if (!empty(validation_errors())): ?>
|
|
<div class="alert alert-danger">
|
|
<a class="close" data-dismiss="alert" title="close">x</a>
|
|
<ul><?php echo (validation_errors('<li>', '</li>')); ?></ul>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<form method="post" action="<?php echo site_url('notes/add'); ?>" name="notes_add" id="notes_add">
|
|
|
|
<div class="form-group">
|
|
<label for="inputTitle"><?php echo lang('notes_input_title'); ?></label>
|
|
<input type="text" name="title" class="form-control" id="inputTitle">
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="catSelect"><?php echo lang('notes_input_category'); ?></label>
|
|
<select name="category" class="form-control" id="catSelect">
|
|
<option value="General" selected="selected"><?php echo lang('notes_selection_general'); ?></option>
|
|
<option value="Antennas"><?php echo lang('notes_selection_antennas'); ?></option>
|
|
<option value="Satellites"><?php echo lang('notes_selection_satellites'); ?></option>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="inputTitle"><?php echo lang('notes_input_notes_content'); ?></label>
|
|
<div id="quillArea"></div>
|
|
<textarea name="content" style="display:none" id="hiddenArea"></textarea>
|
|
</div>
|
|
|
|
<button type="submit" value="Submit" class="btn btn-primary"><?php echo lang('notes_input_btn_save_note'); ?></button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|