Skip to content

Commit

Permalink
Add search input in Badges and Docs pages cs-internship#47
Browse files Browse the repository at this point in the history
  • Loading branch information
Ali-Sdg90 committed Mar 1, 2024
1 parent c67f8fe commit d78ff5f
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,24 @@
@inherits AppComponentBase


<div class="container-fluid pb-3">
<div class="container-fluid pb-6">

<div class="container mt-1 mb-4">
<div class="row justify-content-center">
<div class="col-md-6">
<form class="d-flex">
<input class="form-control me-2"
type="search"
placeholder="Search"
aria-label="Search" />
<button class="btn btn-outline-primary" type="submit">
Search
</button>
</form>
</div>
</div>
</div>

<div class="d-grid gap-3" style="grid-template-columns: 1fr 2fr;">
<div class="bg-body-tertiary border rounded-3">
<BadgeTree BadgeBundleDto="Bundle" BadgeDtoCallBack="@GetBadge"></BadgeTree>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,24 @@
@using CrystallineSociety.Shared.Dtos.BadgeSystem
@inherits AppComponentBase

<div class="container-fluid pb-3">
<div class="container-fluid pb-6">

<div class="container mt-1 mb-4">
<div class="row justify-content-center">
<div class="col-md-6">
<form class="d-flex">
<input class="form-control me-2"
type="search"
placeholder="Search"
aria-label="Search" />
<button class="btn btn-outline-primary" type="submit">
Search
</button>
</form>
</div>
</div>
</div>

<div class="d-grid gap-3" style="grid-template-columns: 1fr 2fr;">
<div class="bg-body-tertiary border rounded-3">
<ProgramDocumentTree ProgramDocuments="_programDocuments" ProgramDocumentCallBack="@GetProgramDocument"></ProgramDocumentTree>
Expand Down

0 comments on commit d78ff5f

Please sign in to comment.