Skip to content
Snippets Groups Projects
Commit 99afa957 authored by Chris Hallberg's avatar Chris Hallberg
Browse files

Added form-control class to Browse Alphabetical template.

parent 5e652fc3
Branches
Tags
No related merge requests found
...@@ -26,13 +26,13 @@ ...@@ -26,13 +26,13 @@
<div> <div>
<form class="form-inline" method="get" action="<?=$this->url('alphabrowse-home')?>" name="alphaBrowseForm" id="alphaBrowseForm"> <form class="form-inline" method="get" action="<?=$this->url('alphabrowse-home')?>" name="alphaBrowseForm" id="alphaBrowseForm">
<label for="alphaBrowseForm_source"><?=$this->transEsc('Browse Alphabetically') ?></label> <label for="alphaBrowseForm_source"><?=$this->transEsc('Browse Alphabetically') ?></label>
<select id="alphaBrowseForm_source" name="source"> <select id="alphaBrowseForm_source" name="source" class="form-control">
<? foreach ($this->alphaBrowseTypes as $key => $item): ?> <? foreach ($this->alphaBrowseTypes as $key => $item): ?>
<option value="<?=$this->escapeHtmlAttr($key) ?>"<? if ($this->source == $key): ?> selected="selected"<? endif; ?>><?=$this->transEsc($item) ?></option> <option value="<?=$this->escapeHtmlAttr($key) ?>"<? if ($this->source == $key): ?> selected="selected"<? endif; ?>><?=$this->transEsc($item) ?></option>
<? endforeach; ?> <? endforeach; ?>
</select> </select>
<label for="alphaBrowseForm_from"><?=$this->transEsc('starting from') ?></label> <label for="alphaBrowseForm_from"><?=$this->transEsc('starting from') ?></label>
<input type="text" name="from" id="alphaBrowseForm_from" value="<?=$this->escapeHtmlAttr($this->from) ?>"/> <input type="text" name="from" id="alphaBrowseForm_from" value="<?=$this->escapeHtmlAttr($this->from) ?>" class="form-control"/>
<input class="btn btn-default" type="submit" value="<?=$this->transEsc('Browse') ?>"/> <input class="btn btn-default" type="submit" value="<?=$this->transEsc('Browse') ?>"/>
</form> </form>
</div> </div>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment