Skip to content

Commit

Permalink
change typos ' is=" ' to ' id=" '
Browse files Browse the repository at this point in the history
  • Loading branch information
bbannon committed May 11, 2024
1 parent a431e4b commit 853c8dd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion groups.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
<form name="editGroupForm" id="editGroupForm">
<input type="hidden" name="editGroupAdd" id="editGroupAdd" value="0">
<input type="hidden" name="editGroupId" id="editGroupId" value="0">
<div class="form-inline" is="divEditName">
<div class="form-inline" id="divEditName">
<label class="col-5" for="editName"><?php etranslate('Group name') ?>: </label>
<input required type="text" class="col-7 form-control" id="editName" name="editName" placeholder="<?php echo translate('New group name') . ' (' . translate('required') . ')'; ?>">
<div id="invalid-name-error" class="invalid-feedback text-right">
Expand Down
12 changes: 6 additions & 6 deletions user_mgmt.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,21 +95,21 @@
<form name="editUserForm" id="editUserForm">
<input type="hidden" name="editUserDelete" id="editUserDelete" value="0">
<input type="hidden" name="editUserAdd" id="editUserAdd" value="0">
<div class="form-inline" is="divEditUsername">
<div class="form-inline" id="divEditUsername">
<label class="col-5" for="editUsername"><?php etranslate('Username') ?>: </label>
<input type="text" class="col-7 form-control" id="editUsername" name="editUsername" placeholder="<?php echo translate('New username') . ' (' . translate('required') . ')'; ?>" MAXLENGTH="25">
<input type="text" class="col-7 form-control" id="editUsername" name="editUsername" placeholder="<?php echo translate('New username') . ' (' . translate('required') . ')'; ?>" maxlengtHH="25">
</div>
<div class="form-inline mt-1" id="div-editFirstname">
<label class="col-5 for=" editFirstname"><?php etranslate('First Name') ?>: </label>
<input type="text" class="col-7 form-control" id="editFirstname" name="editFirstname" MAXLENGTH="25">
<input type="text" class="col-7 form-control" id="editFirstname" name="editFirstname" maxlengtHH="25">
</div>
<div class="form-inline mt-1" id="div-editLastname">
<label class="col-5 for=" editLastname"><?php etranslate('Last Name') ?>: </label>
<input type="text" class="col-7 form-control" id="editLastname" name="editLastname" MAXLENGTH="25">
<input type="text" class="col-7 form-control" id="editLastname" name="editLastname" maxlengtHH="25">
</div>
<div class="form-inline mt-1" id="div-editEmail">
<label class="col-5 for=" editEmail"><?php etranslate('Email') ?>: </label>
<input type="email" class="col-7 form-control" id="editEmail" name="editEmail" MAXLENGTH="75">
<input type="email" class="col-7 form-control" id="editEmail" name="editEmail" maxlengtHH="75">
</div>
<div class="form-inline mt-1" id="div-editPassword1">
<label class="col-5 for=" editPassword1"><?php etranslate('Password') ?>: </label>
Expand Down Expand Up @@ -201,7 +201,7 @@
<div class="p-3"><?php echo $areYouSure; ?></div>
<div class="p-3 m-3 text-danger"><?php echo $deleteUserInfo; ?></div>
<form name="deleteUserForm" id="deleteUserForm">
<div class="form-inline" is="divdeleteUsername">
<div class="form-inline" id="divdeleteUsername">
<label class="col-5" for="deleteUsername"><?php etranslate('Username') ?>: </label>
<input disabled type="text" class="col-7 form-control" id="deleteUsername" name="deleteUsername">
</div>
Expand Down

0 comments on commit 853c8dd

Please sign in to comment.