Files
wavelog/application/views/notes/add.php
2025-10-07 23:03:20 +02:00

75 lines
3.4 KiB
PHP

<!-- Notes add view: form for creating a new note -->
<div class="container notes">
<div class="card">
<div class="card-header">
<h2 class="card-title"><?= __("Notes"); ?></h2>
<ul class="nav nav-tabs card-header-tabs">
<li class="nav-item">
<a class="nav-link" href="<?= site_url('notes'); ?>">
<i class="fa fa-sticky-note"></i> <?= __("Your Notes"); ?>
</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="<?= site_url('notes/add'); ?>">
<i class="fa fa-plus-square"></i> <?= __("Create Note"); ?>
</a>
</li>
</ul>
</div>
<div class="card-body">
<!-- Show validation errors if any -->
<?php if (!empty(validation_errors())): ?>
<div class="alert alert-danger alert-dismissible fade show" role="alert" style="margin-top: 1rem;">
<span class="badge text-bg-info"><?= __("Warning"); ?></span>
<?php echo (validation_errors('<span>', '</span>')); ?>
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
<?php endif; ?>
<!-- Note creation form -->
<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" value="<?php
// Priority: suggested_title > POST value > prefill_title > ''
if (isset($suggested_title) && $suggested_title) {
echo $suggested_title;
} elseif (set_value('title')) {
echo set_value('title');
} elseif (isset($prefill_title) && $prefill_title) {
echo htmlspecialchars($prefill_title);
} else {
echo '';
}
?>">
</div>
<div class="mb-3">
<label for="catSelect">
<?= __("Category"); ?>
<span class="ms-1" data-bs-toggle="tooltip" title="<?= __("Contacts is a special note category used in various places of Wavelog to store information about QSO partners. These notes are private and are not shared with other users nor exported to external services.") ?>">
<i class="fa fa-question-circle text-info"></i>
</span>
</label>
<select name="category" class="form-select" id="catSelect">
<?php
$selected_category = set_value('category', isset($category) ? $category : (isset($prefill_category) ? $prefill_category : 'General'));
foreach (Note::get_possible_categories() as $category_key => $category_label): ?>
<option value="<?= htmlspecialchars($category_key) ?>"<?= ($selected_category == $category_key ? ' selected="selected"' : '') ?>><?= $category_label ?></option>
<?php endforeach; ?>
</select>
</div>
<div class="mb-3">
<label for="inputTitle"><?= __("Note Contents"); ?></label>
<textarea name="content" style="display:none" id="notes"><?php echo set_value('content'); ?></textarea>
</div>
<div class="row">
<div class="col text-end">
<button type="submit" value="Submit" class="btn btn-primary">
<i class="fa fa-pencil-square-o btn-sm"></i> <?= __("Save Note"); ?>
</button>
</div>
</div>
</form>
</div>
</div>
</div>