akf-forum/themes/default/search.ejs

37 lines
1.1 KiB
Plaintext
Raw Normal View History

2022-09-01 16:23:46 +03:00
<!DOCTYPE html>
<html lang="en">
<%- include("extra/meta", {title: "Search page!" }) %>
<body style="text-align: center;">
<%- include("extra/navbar") %>
<link rel="stylesheet" href="/css/search.css" />
<div id="search">
<form action="/search/users" method="GET">
2022-09-08 15:07:48 +03:00
<input type="text" class="input" name="q" placeholder="Search for users" />
<input type="submit" class="btn-primary" value="Search" />
2022-09-01 16:23:46 +03:00
</form>
</div>
<div id="search">
<form action="/search/messages" method="GET">
2022-09-08 15:07:48 +03:00
<input type="text" class="input" name="q" placeholder="Search for messages" />
2022-09-17 00:51:52 +03:00
<input type="text" class="input" name="authorID" placeholder="(Not Required) Author id" />
<input type="submit" value="Search" class="btn-primary" />
2022-09-01 16:23:46 +03:00
</form>
</div>
<div id="search">
<form action="/search/threads" method="GET">
2022-09-17 00:51:52 +03:00
<input type="text" class="input" name="q" placeholder="Search for threads" />
<input type="text" class="input" name="authorID" placeholder="(Not Required) Author id" />
<input type="submit" value="Search" class="btn-primary" />
2022-09-01 16:23:46 +03:00
</form>
</div>
2022-09-17 00:51:52 +03:00
<%- include("extra/footer") %>
2022-09-08 15:07:48 +03:00
2022-09-01 16:23:46 +03:00
</body>
2022-09-17 00:51:52 +03:00
</html>