-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
91 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
From b09d31578f4091c81ec2352bd334a007a093d6df Mon Sep 17 00:00:00 2001 | ||
From: ibizaman <[email protected]> | ||
Date: Fri, 31 Jan 2025 20:52:40 +0100 | ||
Subject: [PATCH] Make labels on login form point to correct inputs | ||
|
||
--- | ||
views/login.blade.php | 4 ++-- | ||
1 file changed, 2 insertions(+), 2 deletions(-) | ||
|
||
diff --git a/views/login.blade.php b/views/login.blade.php | ||
index 89538c3ea..ef708a657 100644 | ||
--- a/views/login.blade.php | ||
+++ b/views/login.blade.php | ||
@@ -15,7 +15,7 @@ | ||
novalidate> | ||
|
||
<div class="form-group"> | ||
- <label for="name">{{ $__t('Username') }}</label> | ||
+ <label for="username">{{ $__t('Username') }}</label> | ||
<input type="text" | ||
class="form-control" | ||
required | ||
@@ -24,7 +24,7 @@ class="form-control" | ||
</div> | ||
|
||
<div class="form-group"> | ||
- <label for="name">{{ $__t('Password') }}</label> | ||
+ <label for="password">{{ $__t('Password') }}</label> | ||
<input type="password" | ||
class="form-control" | ||
required |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters