diff options
author | 2024-01-24 20:14:27 -0800 | |
---|---|---|
committer | 2024-01-24 20:37:12 -0800 | |
commit | e8147f26b99871b60af15dcaca0c25a070ddbb15 (patch) | |
tree | 047f254e67feae2523ae46baa3c821fcfabadde3 | |
parent | 6648e0af3851f0978cf53f0a7707db1a721d9d7e (diff) | |
download | v2-e8147f26b99871b60af15dcaca0c25a070ddbb15.tar.gz v2-e8147f26b99871b60af15dcaca0c25a070ddbb15.tar.zst v2-e8147f26b99871b60af15dcaca0c25a070ddbb15.zip |
Fix incorrect label `for` attribute
-rw-r--r-- | internal/template/templates/views/integrations.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/template/templates/views/integrations.html b/internal/template/templates/views/integrations.html index 96d62416..9bb5b374 100644 --- a/internal/template/templates/views/integrations.html +++ b/internal/template/templates/views/integrations.html @@ -23,7 +23,7 @@ <label for="form-apprise-url">{{ t "form.integration.apprise_url" }}</label> <input type="url" name="apprise_url" id="form-apprise-url" value="{{ .form.AppriseURL }}" placeholder="http://apprise:8080" spellcheck="false"> - <label for="form-apprise-services-url">{{ t "form.integration.apprise_services_url" }} + <label for="form-apprise-services-urls">{{ t "form.integration.apprise_services_url" }} <a href="https://github.com/caronc/apprise/wiki" target="_blank"> {{ icon "external-link" }} </a> @@ -155,7 +155,7 @@ <label for="form-matrix-bot-user">{{ t "form.integration.matrix_bot_user" }}</label> <input type="text" name="matrix_bot_user" id="form-matrix-bot-user" value="{{ .form.MatrixBotUser }}" spellcheck="false"> - <label for="form-matrix-chat-password">{{ t "form.integration.matrix_bot_password" }}</label> + <label for="form-matrix-password">{{ t "form.integration.matrix_bot_password" }}</label> <input type="password" name="matrix_bot_password" id="form-matrix-password" value="{{ .form.MatrixBotPassword }}" spellcheck="false"> <label for="form-matrix-url">{{ t "form.integration.matrix_bot_url" }}</label> |