diff options
| author | winter | 2025-01-28 20:34:49 +0000 |
|---|---|---|
| committer | winter | 2025-01-28 20:34:49 +0000 |
| commit | e591374bb4b7d231fadf99d2e278806e53971919 (patch) | |
| tree | 146bc3eeca58fb298dc204341734f55680509c00 /templates/write_note_form.php | |
| parent | 09a42d23cd067dc5c2a7d4f03e8f074a9317f6c8 (diff) | |
display attachments on notes
Diffstat (limited to 'templates/write_note_form.php')
| -rw-r--r-- | templates/write_note_form.php | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/templates/write_note_form.php b/templates/write_note_form.php index d2dae61..b86e825 100644 --- a/templates/write_note_form.php +++ b/templates/write_note_form.php @@ -9,13 +9,12 @@ <div class="handle">@<?= $actor->handle ?></div> </div> </div> - <div class="row"> + <div class="row summaryAndContent"> <label for="noteContent"><?= __('writeNote.label') ?></label> - <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"> + <input type="text" id="noteSummary" name="summary" autocomplete="off" + placeholder="<?= __('writeNote.summary.label') ?>"> + <textarea name="content" id="noteContent" required autocomplete="off" + placeholder="<?= __('writeNote.placeholder') ?>"></textarea> </div> <div class="row"> <label class="standalone"><?= __('writeNote.mentions.label') ?></label> |
