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/sysconf | |
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/sysconf')
-rw-r--r-- | app/view/sysconf/default.view.php | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/app/view/sysconf/default.view.php b/app/view/sysconf/default.view.php index 00e6adf..65f7cb6 100644 --- a/app/view/sysconf/default.view.php +++ b/app/view/sysconf/default.view.php @@ -52,34 +52,34 @@ <input type="hidden" name="input[action]" value="save" /> <legend>Database Connection</legend> <div class="form-group"> - <label for="inputDBEngine">Engine</label> - <input type="text" id="inputDBEngine" class="form-control" value="Mysql" disabled /> + <label>Engine</label> + <input type="text" class="form-control" value="Mysql" disabled /> </div> <div class="form-group"> - <label for="inputDBAddress">Server Address</label> - <input type="text" name="input[dbAddress]" id="inputDBAddress" class="form-control" placeholder="localhost" required="true" /> + <label>Server Address</label> + <input type="text" name="input[dbAddress]" class="form-control" placeholder="localhost" required="true" /> </div> <div class="form-group"> - <label for="inputDBName">Database Name</label> - <input type="text" name="input[dbName]" id="inputDBName" class="form-control" placeholder="db_scrott" required="true" /> + <label>Database Name</label> + <input type="text" name="input[dbName]" class="form-control" placeholder="db_scrott" required="true" /> </div> <div class="form-group"> - <label for="inputDBUser">Username</label> - <input type="text" name="input[dbUser]" id="inputDBUser" class="form-control" placeholder="root" required="true" /> + <label>Username</label> + <input type="text" name="input[dbUser]" class="form-control" placeholder="root" required="true" /> </div> <div class="form-group"> - <label for="inputDBPass">Password</label> - <input type="password" name="input[dbPass]" id="inputDBPass" class="form-control" /> + <label>Password</label> + <input type="password" name="input[dbPass]" class="form-control" /> </div> <legend>Application Installation</legend> <div class="form-group"> - <label for="inputAppPath">Install Location</label> - <input type="text" id="inputAppPath" class="form-control" value="<?=$mod->ar()?>/" disabled /> + <label>Install Location</label> + <input type="text" class="form-control" value="<?=$mod->ar()?>/" disabled /> <h6 class="pull-right">Detected from location of files in web document root</h6> </div> |