<form method="post" class="panel-menu" action="<?php echo ADMIN_URL; ?>&do=users&op=delete"> <div class="form-block"> <div class="block-header"> <div class="block-name"><?php echo $this->lng_m['users']; ?></div> </div> <div class="block-line"></div> <table class="table table-striped"> <thead> <tr> <th>#</th> <th><?php echo $this->lng['login']; ?></th> <th><?php echo $this->lng['group']; ?></th> <th><?php echo $this->lng['email']; ?></th> <th><?php echo $this->lng['ip']; ?></th> <th class="action"><?php echo $this->lng_m['user_field_action']; ?> <input type="checkbox" class="check-all" data-for="check-input"></th> </tr> </thead> <tbody> <?php echo $data['USERS']; ?> </tbody> </table> </div> <div class="form-block actions"> <?php echo $data['PAGINATION']; ?> <div class="right-act"> <div class="input-append"> <input type="text" class="adm-search-input" id="adm-search-id" placeholder="<?php echo $this->lng['ph_search']; ?>"> <button class="btn adm-search" data-for="#adm-search-id" type="button" rel="tooltip" title="<?php echo $this->lng['search']; ?>"><i class="icon-search"></i></button> <a class="btn" href="<?php echo ADMIN_URL; ?>&do=users&op=add"><i class="icon-plus"></i></a> <a class="btn edit" data-for="check-input" data-link="<?php echo ADMIN_URL; ?>&do=users&op=edit&id=" href="#"><i class="icon-pencil"></i></a> <button class="btn remove" data-for="check-input" data-text="<?php echo $this->lng_m['user_accept']; ?>" type="submit" name="delete"><i class="icon-remove"></i></button> <button class="btn remove" data-for="check-input" data-text="<?php echo $this->lng_m['user_accept2']; ?>" type="submit" name="ban"><i class="icon-ban-circle"></i></button> <button class="btn remove" data-for="check-input" data-text="<?php echo $this->lng_m['user_accept3']; ?>" type="submit" name="unban"><i class="icon-ok-circle"></i></button> </div> </div> </div> </form>