diff options
author | Malf Furious <m@lfurio.us> | 2015-12-24 17:40:38 -0500 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2015-12-24 17:40:38 -0500 |
commit | c36269f976cb8287f1b6e17d4b0a958e4e9741da (patch) | |
tree | 30ca01eb23e90218f35d12d12bcabaedae48aeb8 | |
parent | aae92b703d57d95d27cce359420f9f0d626f7843 (diff) | |
download | scrott-c36269f976cb8287f1b6e17d4b0a958e4e9741da.tar.gz scrott-c36269f976cb8287f1b6e17d4b0a958e4e9741da.zip |
* Added required=true to form fields on bootstrap views
-rw-r--r-- | app/view/sysconf/default.view.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/view/sysconf/default.view.php b/app/view/sysconf/default.view.php index 1ecedd8..00e6adf 100644 --- a/app/view/sysconf/default.view.php +++ b/app/view/sysconf/default.view.php @@ -58,17 +58,17 @@ <div class="form-group"> <label for="inputDBAddress">Server Address</label> - <input type="text" name="input[dbAddress]" id="inputDBAddress" class="form-control" placeholder="localhost" /> + <input type="text" name="input[dbAddress]" id="inputDBAddress" 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" /> + <input type="text" name="input[dbName]" id="inputDBName" 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" /> + <input type="text" name="input[dbUser]" id="inputDBUser" class="form-control" placeholder="root" required="true" /> </div> <div class="form-group"> |