
* Svelte: WIP * WIP * WIP * WIP * WIP * WIP * Finished * Remove redundant code * Fix typo * Re-add routes * Form margin * Mobile nicities * Mobile changed * Increase keepalvie * Update Guild.svelte * Update Whitelabel.svelte * Whitelabel changes
16 lines
347 B
Svelte
16 lines
347 B
Svelte
<div class="guild-badge" on:click={invite}>
|
|
<div class="guild-icon-bg">
|
|
<i class="fas fa-plus fa-2x guild-icon-fa"></i>
|
|
</div>
|
|
|
|
<div>
|
|
<span class="guild-name">Invite to your server</span>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
function invite() {
|
|
window.location.href = `https://invite.ticketsbot.net`;
|
|
}
|
|
</script>
|