mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-10-31 19:25:04 +03:00
35 lines
No EOL
1.2 KiB
Text
35 lines
No EOL
1.2 KiB
Text
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<%- include(dataset.getFile(dataset.theme.codename +"/views/extra/meta"), {title: "Search page!" }) %>
|
|
|
|
|
|
<body style="text-align: center;">
|
|
<%- include(dataset.getFile(dataset.theme.codename +"/views/extra/navbar")) %>
|
|
|
|
|
|
<h1 class="title">Search</h1>
|
|
|
|
<div class="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>
|
|
|
|
<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>
|
|
|
|
<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(dataset.getFile(dataset.theme.codename +"/views/extra/footer")) %>
|
|
|
|
</body>
|
|
|
|
</html> |