{{!
    This file is part of Moodle - http://moodle.org/

    Moodle is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    Moodle is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with Moodle.  If not, see <http://www.gnu.org/licenses/>.

    Edwiser RemUI
    @package theme_remui
    @copyright (c) 2023 WisdmLabs (https://wisdmlabs.com/)
    @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
}}
{{!
    @template block_myoverview/nav-search-widget

    This template renders the search input within the filters area.

    Example context (json):
    {}
}}
<div id="searchform-auto-{{uniqid}}" class="form-inline simplesearchform edw-search-form-wrapper">
    <div class="input-group searchbar w-100" role="search">
        <div class="input-group-prepend d-flex align-items-center">
            <label for="searchinput">
                <span class="sr-only">{{$label}}{{#str}} search, core {{/str}}{{/label}}</span>
            </label>
            <button class="btn btn-submit"><span class="edw-icon edw-icon-Search"></span></button>
            <input type="text" data-region="input" data-action="search" id="searchinput"
                class="form-control withclear rounded"
                placeholder="{{$placeholder}}{{#str}} search, core {{/str}}{{/placeholder}}" name="search"
                value="{{$value}}{{/value}}" autocomplete="off" title="{{#str}} search, core {{/str}}">
            <button class="btn d-none" data-action="clearsearch" type="button">
                {{#pix}} e/cancel, core {{/pix}}
                <span class="sr-only">{{#str}} clearsearch, core {{/str}}</span>
            </button>
        </div>
    </div>
</div>
