Skip to content

Commit

Permalink
Label form inputs.
Browse files Browse the repository at this point in the history
  • Loading branch information
kimisgold committed Apr 23, 2021
1 parent 07ac522 commit bce6f2a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions admin/themes/default/tags/browse.php
Expand Up @@ -29,13 +29,13 @@
<?php $tagsSectionClass = ($canEdit) ? 'seven' : 'ten alpha'; ?>

<form id="search-tags" method="GET" class="<?php echo $tagsSectionClass; ?> columns omega">
<input type="text" name="like" aria-label="<?php echo __('Search tags'); ?>"/>
<button class="green button"><?php echo __('Search tags'); ?></button>
<input type="text" name="like" aria-labelledby="search-tags-button"/>
<button class="green button" type="button" id="search-tags-button"><?php echo __('Search tags'); ?></button>
<?php if(isset($params['type'])): ?>
<input type="hidden" name="type" value="<?php echo $params['type']; ?>"/>
<?php endif; ?>

<select class="quick-filter">
<select class="quick-filter" aria-label="<?php echo __('Record Types'); ?>">
<option><?php echo __('Record Types'); ?></option>
<option value="<?php echo $this->url(); ?>"><?php echo __('All'); ?></option>
<?php foreach($record_types as $record_type): ?>
Expand Down

0 comments on commit bce6f2a

Please sign in to comment.