Files
wavelog/application/views/notes/add.php
MatykoBr 7f3c0f8418 Added support for Markdown in Notes as requested in #936
Added EasyMDE instead of Quill as the editor, because it supports Markdown (requested in #936 ). Made the colors of the editor fit the colors of the selected theme.
2025-02-11 22:19:59 +01:00

53 lines
1.6 KiB
PHP

<div class="container notes">
<div class="card">
<div class="card-header">
<h2 class="card-title"><?= __("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'); ?>"><?= __("Notes"); ?></a>
</li>
<li class="nav-item">
<a class="nav-link active" href="<?php echo site_url('notes/add'); ?>"><?= __("Create Note"); ?></a>
</li>
</ul>
</div>
<div class="card-body">
<?php if (!empty(validation_errors())): ?>
<div class="alert alert-danger">
<a class="btn-close" data-bs-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="mb-3">
<label for="inputTitle"><?= __("Title"); ?></label>
<input type="text" name="title" class="form-control" id="inputTitle">
</div>
<div class="mb-3">
<label for="catSelect"><?= __("Category"); ?></label>
<select name="category" class="form-select" id="catSelect">
<option value="General" selected="selected"><?= __("General"); ?></option>
<option value="Antennas"><?= __("Antennas"); ?></option>
<option value="Satellites"><?= __("Satellites"); ?></option>
</select>
</div>
<div class="mb-3">
<label for="inputTitle"><?= __("Note Contents"); ?></label>
<textarea name="content" style="display:none" id="notes"></textarea>
</div>
<button type="submit" value="Submit" class="btn btn-primary"><?= __("Save Note"); ?></button>
</form>
</div>
</div>
</div>