diff options
author | Malf Furious <m@lfurio.us> | 2016-06-01 22:41:29 -0400 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2016-06-01 22:41:29 -0400 |
commit | ca94dff5d7587c1f401acb022d2598ebb4c06376 (patch) | |
tree | 2349381cd945bee66872909b85918a711195a939 /app | |
parent | 8a29936bf03ede5412d83d5541ba802259a3fc7a (diff) | |
download | scrott-ca94dff5d7587c1f401acb022d2598ebb4c06376.tar.gz scrott-ca94dff5d7587c1f401acb022d2598ebb4c06376.zip |
Update newgroup modal
Made the name field (the only field) on this form as required.
Diffstat (limited to 'app')
-rw-r--r-- | app/view/common/newgroup.modal.view.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/view/common/newgroup.modal.view.php b/app/view/common/newgroup.modal.view.php index 379683b..3dd631c 100644 --- a/app/view/common/newgroup.modal.view.php +++ b/app/view/common/newgroup.modal.view.php @@ -34,7 +34,7 @@ <input type="hidden" name="input[action]" value="common-group-add" /> <div class="form-group"> <label>Group Name</label> - <input type="text" name="input[name]" class="form-control" maxlength="50" /> + <input type="text" name="input[name]" class="form-control" required="true" maxlength="50" /> </div> <button type="submit" class="btn btn-success pull-right"> |