mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-11-01 19:25:05 +03:00
37 lines
No EOL
1.1 KiB
Text
37 lines
No EOL
1.1 KiB
Text
<!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">
|
|
<input type="text" class="input" name="q" placeholder="Search for users" />
|
|
<input type="submit" class="btn-primary" value="Search" />
|
|
</form>
|
|
</div>
|
|
|
|
<div id="search">
|
|
<form action="/search/messages" method="GET">
|
|
<input type="text" class="input" name="q" placeholder="Search for messages" />
|
|
<input type="text" class="input" name="authorID" placeholder="(Not Required) Author id" />
|
|
<input type="submit" value="Search" class="btn-primary" />
|
|
</form>
|
|
</div>
|
|
|
|
<div id="search">
|
|
<form action="/search/threads" method="GET">
|
|
<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" />
|
|
</form>
|
|
</div>
|
|
<%- include("extra/footer") %>
|
|
|
|
</body>
|
|
|
|
</html> |