invite keys

This commit is contained in:
ROEvGABE 2022-10-09 00:07:56 -04:00
parent 64d73ace5c
commit 6a5202d234
1 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
<svelte:head>
<title>Invites - Rowblox</title>
</svelte:head>
<div class="d-flex justify-content-between">
<h1 class="text-4xl mt-32 text-bold font-bold">Invite Keys</h1>
<p>"keys can be created every 7 days. Creating a key costs 250 Rowbux."</p>
<button class=" text-white px-4 py-1 w-full rounded shadow-lg border-2 border-white bg-green-500 hover:bg-green-400">Create a Key</button>
<div>
<table class="table-auto mx-auto text-semibold font-bold mt-4 text-1.5xl w-96 h-20 rounded shadow-lg border-2">
<thead>
<tr class="divide-x">
<th>Key</th>
<th>Created</th>
<th>Uses</th>
</tr>
</thead>
<tbody>
<tr class="divide-x">
<td>Keytest1</td>
<td>10/8/22</td>
<td>100</td>
</tr>
</tbody>
</table>
</div>
</div>