move button to match format
This commit is contained in:
parent
371fb98d4d
commit
022c44f31a
1 changed files with 10 additions and 5 deletions
|
@ -76,10 +76,6 @@ const currentPage = eventResponse.page;
|
||||||
<h2 class="text-2xl font-bold">Event Management</h2>
|
<h2 class="text-2xl font-bold">Event Management</h2>
|
||||||
<p class="opacity-70">Manage and create IEEE UCSD events</p>
|
<p class="opacity-70">Manage and create IEEE UCSD events</p>
|
||||||
</div>
|
</div>
|
||||||
<button class="btn btn-primary gap-2" onclick="window.openEditModal()">
|
|
||||||
<Icon name="heroicons:plus" class="h-5 w-5" />
|
|
||||||
Add New Event
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Stats Cards -->
|
<!-- Stats Cards -->
|
||||||
|
@ -145,7 +141,17 @@ const currentPage = eventResponse.page;
|
||||||
<Icon name="heroicons:calendar" class="h-5 w-5" />
|
<Icon name="heroicons:calendar" class="h-5 w-5" />
|
||||||
</div>
|
</div>
|
||||||
Events List
|
Events List
|
||||||
|
<div class="ml-auto justify-end">
|
||||||
|
<button
|
||||||
|
class="btn btn-primary gap-2"
|
||||||
|
onclick="window.openEditModal()"
|
||||||
|
>
|
||||||
|
<Icon name="heroicons:plus" class="h-5 w-5" />
|
||||||
|
Add New Event
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
</h3>
|
</h3>
|
||||||
|
|
||||||
<div class="divider"></div>
|
<div class="divider"></div>
|
||||||
|
|
||||||
<!-- Filter Controls -->
|
<!-- Filter Controls -->
|
||||||
|
@ -718,7 +724,6 @@ const currentPage = eventResponse.page;
|
||||||
<button>close</button>
|
<button>close</button>
|
||||||
</form>
|
</form>
|
||||||
</dialog>
|
</dialog>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { Get } from "../../scripts/pocketbase/Get";
|
import { Get } from "../../scripts/pocketbase/Get";
|
||||||
import { Authentication } from "../../scripts/pocketbase/Authentication";
|
import { Authentication } from "../../scripts/pocketbase/Authentication";
|
||||||
|
|
Loading…
Reference in a new issue