aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/write_note_form.php
diff options
context:
space:
mode:
authorwinter2025-01-16 18:33:18 +0000
committerwinter2025-01-16 18:33:18 +0000
commit8de5608976dc8a73a400267601acb4c8e127de5a (patch)
treea907dd4c4e55e331979cd9ce14852592af2654a0 /templates/write_note_form.php
parente3a0248c3b1762abf5138fbd1b8228601006d44d (diff)
note privacy and summary stuff
Diffstat (limited to 'templates/write_note_form.php')
-rw-r--r--templates/write_note_form.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/write_note_form.php b/templates/write_note_form.php
index c28dc12..b74de69 100644
--- a/templates/write_note_form.php
+++ b/templates/write_note_form.php
@@ -5,6 +5,19 @@
<textarea name="content" id="noteContent" required autocomplete="off"></textarea>
</div>
<div class="row">
+ <label for="noteSummary"><?= __('writeNote.summary.label') ?></label>
+ <input type="text" id="noteSummary" name="summary" autocomplete="off">
+ </div>
+ <div class="row">
+ <label for="noteScope"><?= __('writeNote.scope.label') ?></label>
+ <select name="scope" id="noteScope" required autocomplete="off">
+ <option value="none"><?= __('note.privacy.scope.none') ?></option>
+ <option value="mutuals"><?= __('note.privacy.scope.mutuals') ?></option>
+ <option value="followers"><?= __('note.privacy.scope.followers') ?></option>
+ <option value="public" selected><?= __('note.privacy.scope.public') ?></option>
+ </select>
+ </div>
+ <div class="row">
<button class="primary"><?= __('writeNote.action') ?></button>
</div>
</form> \ No newline at end of file