AltitudeWeb/frontend/src/app/bans/bans.component.html

28 lines
1019 B
HTML
Raw Normal View History

2025-04-11 19:20:02 +00:00
<ng-container>
<app-header [current_page]="'bans'" height="200px" background_image="/public/img/backgrounds/staff.png"
[overlay_gradient]="0.5">>
<div class="title" header-content>
<h1>Punishment History</h1>
</div>
</app-header>
2025-04-11 20:24:25 +00:00
<main>
<section class="darkmodeSection">
<div class="container">
<div class="columnSection">
<div class="columnContainer">
<button (click)="punishmentType = 'all'">all</button>
<button (click)="punishmentType = 'ban'">bans</button>
<button (click)="punishmentType = 'mute'">mutes</button>
<button (click)="punishmentType = 'warn'">warnings</button>
</div>
<div class="columnContainer bansSearchContainer">
<input class="bansSearch" type="text" placeholder="Search..">
</div>
</div>
2025-04-11 19:56:46 +00:00
<app-history [userType]="userType" [punishmentType]="punishmentType"></app-history>
</div>
2025-04-11 20:24:25 +00:00
</section>
</main>
2025-04-11 19:20:02 +00:00
</ng-container>