code.gitea.io/gitea@v1.22.3/templates/shared/search/input.tmpl (about)

     1  {{/* Value - value of the search field (for search results page) */}}
     2  {{/* Disabled (optional) - if search field has to be disabled */}}
     3  {{/* Placeholder (optional) - placeholder text to be used */}}
     4  <input type="search" name="q"{{with .Value}} value="{{.}}"{{end}} maxlength="255" spellcheck="false" placeholder="{{with .Placeholder}}{{.}}{{else}}{{ctx.Locale.Tr "search.search"}}{{end}}"{{if .Disabled}} disabled{{end}}>