Files
Myrient-Search-Engine/views/pages/search.ejs
ovosimpatico 0138bb0b5e - i18n localization
- Add PSP support on web emu
- properly doing CORS (blame PPSSPP)
- added contributors image on about
- proxying emulatorjs to avoid internet blocking
- initial seeds for multithreading on webemu
- added new searchalikes
- Added new error page
2025-03-31 05:16:43 -03:00

20 lines
974 B
Plaintext

<div class="row h-50 w-100 m-0">
<div class="col-sm-12 my-auto">
<pre style="font: 20px / 19px monospace; color: white; text-align: center; overflow: hidden;">
<%= generateAsciiArt() %>
<%= __('nav.search') %>!
</pre>
<div class="text-center text-white">
<form>
<input type="hidden" name="s" id="searchSettings">
<input id="search" type="text" style="width: 80%;display: inline;" class="form-control bg-dark text-white mb-2"
name="q" autocomplete="off" placeholder="<%= __('search.placeholder') %>">
<ul class="SuggestionList col-sm-12" id="suggestionList" style="width: 78%;left: 11%;"></ul>
<div>
<button type="submit" formaction="/search" class="btn btn-secondary"><%= __('search.button') %></button>
<button type="submit" formaction="/lucky" class="btn btn-secondary"><%= __('search.lucky') %></button>
</div>
</div>
</form>
</div>
</div>