You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
563 B
17 lines
563 B
2 years ago
|
<%= form_with model: @user, url: path(current_user), method: "get", local: true do |f| %>
|
||
|
<div class="app-search govuk-!-margin-bottom-4">
|
||
|
<div class="govuk-form-group app-search__form-group">
|
||
|
<label class="govuk-label govuk-!-margin-bottom-2" for="search-field">
|
||
|
<%= label %>
|
||
|
</label>
|
||
|
|
||
|
<input class="govuk-input app-search__input" id="search-field" name="search-field" type="search" autocomplete="off">
|
||
|
</div>
|
||
|
|
||
|
<button class="govuk-button app-search__button undefined" data-module="govuk-button">
|
||
|
Search
|
||
|
</button>
|
||
|
|
||
|
</div>
|
||
|
<% end %>
|