aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/write_note_form.php
diff options
context:
space:
mode:
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