home.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta
  6. name="viewport"
  7. content="width=device-width, initial-scale=1.0, maximum-scale=5.0"
  8. />
  9. <title>Simo Search</title>
  10. <link rel="stylesheet" href="/static/main.css" />
  11. <link rel="icon" type="image/x-icon" href="/static/favicon.gif" />
  12. <link
  13. rel="search"
  14. type="application/opensearchdescription+xml"
  15. title="Simo Search"
  16. href="/opensearch.xml"
  17. />
  18. </head>
  19. <body>
  20. <div class="view-home">
  21. <div class="container">
  22. <h1 class="hero-logo">Simo <span>Search</span></h1>
  23. <form action="/search" class="home-search-form">
  24. <div class="search-input-wrapper">
  25. <input
  26. name="q"
  27. type="text"
  28. class="search-box"
  29. placeholder="Search the web..."
  30. autofocus
  31. autocomplete="off"
  32. />
  33. </div>
  34. <div class="buttons">
  35. <button type="submit" class="btn-primary">
  36. Search
  37. </button>
  38. <a target="_blank" href="https://bwaaa.monster/donate">
  39. <button type="button" class="btn-secondary">
  40. Donate
  41. </button>
  42. </a>
  43. </div>
  44. </form>
  45. </div>
  46. </div>
  47. </body>
  48. </html>