diff options
author | Malf Furious <m@lfurio.us> | 2016-03-13 20:51:40 -0400 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2016-03-27 20:16:32 -0400 |
commit | ded0da07ab8d784c7d257a9487fef096032c5521 (patch) | |
tree | 5a6e4d4662afeccdc04267abf5eb83a2bfce285c /app/view/auth/default.view.php | |
parent | 92e255cf02de8dc34f1221c952b3dd3bec9cc62b (diff) | |
download | scrott-ded0da07ab8d784c7d257a9487fef096032c5521.tar.gz scrott-ded0da07ab8d784c7d257a9487fef096032c5521.zip |
Fix <label>s and <input>s that use unnecessary DOM IDs
I dont need to give these elements IDs, so I'm not going to
Diffstat (limited to 'app/view/auth/default.view.php')
-rw-r--r-- | app/view/auth/default.view.php | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/app/view/auth/default.view.php b/app/view/auth/default.view.php index 16085e7..83bb495 100644 --- a/app/view/auth/default.view.php +++ b/app/view/auth/default.view.php @@ -31,13 +31,13 @@ <h1>Login</h1> <div class="form-group"> - <label for="loginUsername">Username</label> - <input type="text" name="input[username]" id="loginUsername" class="form-control" required="true" autofocus /> + <label>Username</label> + <input type="text" name="input[username]" class="form-control" required="true" autofocus /> </div> <div class="form-group"> - <label for="loginPassword">Password</label> - <input type="password" name="input[password]" id="loginPassword" class="form-control" /> + <label>Password</label> + <input type="password" name="input[password]" class="form-control" /> </div> <div class="btn-group pull-right"> @@ -72,18 +72,18 @@ <h1 class="text-center">Signup for Scrott</h1> <div class="form-group"> - <label for="signupUsername">Username</label> - <input type="text" name="input[username]" id="signupUsername" class="form-control" required="true" maxlength="50" /> + <label>Username</label> + <input type="text" name="input[username]" class="form-control" required="true" maxlength="50" /> </div> <div class="form-group"> - <label for="signupPassword">Password</label> - <input type="password" name="input[password]" id="signupPassword" class="form-control" /> + <label>Password</label> + <input type="password" name="input[password]" class="form-control" /> </div> <div class="form-group"> - <label for="signupCPassword">Confirm Password</label> - <input type="password" name="input[cPassword]" id="signupCPassword" class="form-control" /> + <label>Confirm Password</label> + <input type="password" name="input[cPassword]" class="form-control" /> </div> <div class="btn-group pull-right"> |