forked from 18F/fedramp-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.html
14 lines (14 loc) · 950 Bytes
/
search.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<div class="usa-grid limit">
<div class="usa-width-one-whole">
<form id="search_form" class="usa-search" method="get" ng-submit="controller.search($event)" accept-charset="UTF-8" action="http://search.usa.gov/search">
<input type="hidden" name="utf8" value="✓" />
<input type="hidden" name="affiliate" id="affiliate" value="fedramp" />
<input type="hidden" name="format" id="format" value="{{controller.format}}" />
<label class="usa-sr-only" for="search-field">Search</label>
<input type="search" name="query" id="search-field" title="Search query" ng-model="controller.query" class="usagov-search-autocomplete ui-autocomplete-input" autocomplete="off" role="textbox" aria-autocomplete="list" aria-haspopup="true" />
<button type="submit">
<span class="usa-search-submit-text">Search</span>
</button>
</form>
</div>
</div>