diff options
author | Drew DeVault <sir@cmpwn.com> | 2020-11-19 11:48:12 -0500 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2020-11-19 11:48:12 -0500 |
commit | 797b426ec6a6fc0222ff9dc94e33346abcb82663 (patch) | |
tree | 1acdfe95660362654b156fcd4771159749894650 /themes | |
parent | 51498a2dc37987f55b022efb961b68a282be17ed (diff) | |
download | alps-797b426ec6a6fc0222ff9dc94e33346abcb82663.tar.gz alps-797b426ec6a6fc0222ff9dc94e33346abcb82663.zip |
Add "Full name" option to settings
This provides the name portion of your From header in the compose view.
Diffstat (limited to 'themes')
-rw-r--r-- | themes/alps/settings.html | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/themes/alps/settings.html b/themes/alps/settings.html index ebcc532..9fc58ca 100644 --- a/themes/alps/settings.html +++ b/themes/alps/settings.html @@ -14,9 +14,18 @@ <main class="settings"> <form method="post"> <div class="action-group"> + <label for="from">Full name</label> + <input + type="text" + name="from" + id="from" + value="{{.Settings.From}}" + /> + </div> + + <div class="action-group"> <label for="signature">Message signature</label> <textarea - type="number" name="signature" id="signature" rows="5" |