summaryrefslogtreecommitdiff
path: root/views/new-bookmark.php
diff options
context:
space:
mode:
authorAaron Parecki <aaron@parecki.com>2016-12-17 14:36:53 -0800
committerAaron Parecki <aaron@parecki.com>2016-12-17 14:36:53 -0800
commit1fac25a34063e7e47778651639d75c10c861ce21 (patch)
treea3b6dd3e09b8a24e8ff23cd4707c719900050690 /views/new-bookmark.php
parent6d1756a5120c2a7498ce99212c4df82cb97a23e3 (diff)
add nice labels to bookmark page
Diffstat (limited to 'views/new-bookmark.php')
-rw-r--r--views/new-bookmark.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/views/new-bookmark.php b/views/new-bookmark.php
index 417c86d..1ac208c 100644
--- a/views/new-bookmark.php
+++ b/views/new-bookmark.php
@@ -13,27 +13,27 @@
<form role="form" style="margin-top: 20px;" id="note_form">
<div class="form-group">
- <label for="note_bookmark"><code>bookmark-of</code></label>
+ <label for="note_bookmark">Bookmark URL (<code>bookmark-of</code>)</label>
<input type="text" id="note_bookmark" value="<?= $this->bookmark_url ?>" class="form-control">
</div>
<div class="form-group">
- <label for="note_name"><code>name</code></label>
+ <label for="note_name">Name (<code>name</code>)</label>
<input type="text" id="note_name" value="<?= $this->bookmark_name ?>" class="form-control">
</div>
<div class="form-group">
- <label for="note_content"><code>content</code> (optional)</label>
+ <label for="note_content">Content (<code>content</code>, optional)</label>
<textarea id="note_content" value="" class="form-control" style="height: 5em;"><?= $this->bookmark_content ?></textarea>
</div>
<div class="form-group">
- <label for="note_category"><code>category</code> (optional, comma-separated list of tags)</label>
+ <label for="note_category">Tags (<code>category</code>, optional, comma-separated list of tags)</label>
<input type="text" id="note_category" value="<?= $this->bookmark_tags ?>" class="form-control" placeholder="e.g. web, personal">
</div>
<div class="form-group">
- <label for="note_syndicate-to"><code>syndicate-to</code> <a href="javascript:reload_syndications()">(refresh)</a></label>
+ <label for="note_syndicate-to">Syndicate (<code>syndicate-to</code>) <a href="javascript:reload_syndications()">refresh</a></label>
<div id="syndication-container">
<?php
if($this->syndication_targets) {