mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
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.
53 lines
1.6 KiB
PHP
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>
|