Advertisement
example_1

save

Apr 8th, 2020
482
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.95 KB | None | 0 0
  1. <div class="container">
  2.         <form>
  3.             <div class="form-group">
  4.                 <label for="sel1">Select the group to which you want to add users</label>
  5.                 <select class="form-control" id="sel1">
  6.                     <#list groups! as group>
  7.                         <option value="${group.id}" name="id">${group.groupName}</option>
  8.                     </#list>
  9.                 </select>
  10.             </div>
  11.             <div class="form-group">
  12.                 <label for="sel2">Select user</label>
  13.                 <select class="form-control" id="sel2">
  14.                     <#list users! as user>
  15.                         <option value="${user.id}" name="id">${user.username}</option>
  16.                     </#list>
  17.                 </select>
  18.             </div>
  19.             <div class="form-group">
  20.                 <button type="submit" class="btn btn-primary">Добавить</button>
  21.             </div>
  22.         </form>
  23.     </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement