17 lines
715 B
Plaintext
17 lines
715 B
Plaintext
|
@page
|
||
|
@{
|
||
|
ViewData["Title"] = "Search";
|
||
|
ViewData["Specific"] = "Search";
|
||
|
}
|
||
|
|
||
|
<div class="container d-flex flex-column align-items-center">
|
||
|
<form class="my-4" style="width: 720px;">
|
||
|
<div class="input-group">
|
||
|
<input type="text" class="form-control" placeholder="What are you looking for?" aria-label="Search" aria-describedby="search-btn">
|
||
|
<input type="checkbox" class="btn-check" id="config-check-toggle" autocomplete="off">
|
||
|
<label class="btn btn-outline-secondary" for="config-check-toggle"><i class="bi bi-sliders"></i></label>
|
||
|
<button class="btn btn-outline-primary" type="button" id="search-btn">Search</button>
|
||
|
</div>
|
||
|
</form>
|
||
|
</div>
|