frontend_projekt/html/topbar.html

19 lines
523 B
HTML

<!--
Reusable topbar for OnlyPrompt
- Search in the middle
- small action icons
- profile avatar on the right
-->
<header class="topbar-shell">
<div class="topbar-search">
<i class="bi bi-search"></i>
<input type="text" placeholder="Search">
</div>
<!-- Profile avatar on the right (must be changed with backend) -->
<button class="topbar-avatar-btn" aria-label="Profile">
<img src="../images/content/cat.png" alt="Profile Picture" class="topbar-avatar">
</button>
</div>
</header>