mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-11-22 20:10:40 +03:00
Update search.ejs
This commit is contained in:
parent
18974753e0
commit
9831524a00
1 changed files with 11 additions and 9 deletions
|
@ -10,26 +10,28 @@
|
|||
|
||||
<div id="search">
|
||||
<form action="/search/users" method="GET">
|
||||
<input type="text" name="q" placeholder="Search for users" />
|
||||
<input type="submit" value="Search" />
|
||||
<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" name="q" placeholder="Search for messages" />
|
||||
<input type="text" name="authorID" placeholder="(Not Required) Author id" />
|
||||
<input type="submit" value="Search" />
|
||||
<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" name="q" placeholder="Search for threads" />
|
||||
<input type="text" name="authorID" placeholder="(Not Required) Author id" />
|
||||
<input type="submit" value="Search" />
|
||||
<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>
|
||||
</html>
|
||||
|
|
Loading…
Reference in a new issue