diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2019-09-28 10:46:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-28 10:46:31 +0200 |
commit | c8cd607681ac128228f57114ce14dd67ab05de04 (patch) | |
tree | f1ddbe9300a4b37e2f8e78f933ed82dca98b1e10 /core/src | |
parent | 8ca587be3a6cb555eb1c8b8245fe48cc9bea7a3e (diff) | |
parent | f737dc9a864443b30cd908dbf3d27b890ba4f4d4 (diff) | |
download | nextcloud-server-c8cd607681ac128228f57114ce14dd67ab05de04.tar.gz nextcloud-server-c8cd607681ac128228f57114ce14dd67ab05de04.zip |
Remove input id on login form (#17294)
Remove input id on login form
Diffstat (limited to 'core/src')
-rw-r--r-- | core/src/components/login/LoginForm.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/src/components/login/LoginForm.vue b/core/src/components/login/LoginForm.vue index 5c2b524248c..3ba13b4f025 100644 --- a/core/src/components/login/LoginForm.vue +++ b/core/src/components/login/LoginForm.vue @@ -84,8 +84,9 @@ <div id="submit-wrapper"> <input type="submit" - id="submit" class="login primary" + name="submit" + id="submit-form" title="" :value="!loading ? t('core', 'Log in') : t('core', 'Logging in …')" /> <div class="submit-icon" |