diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2024-10-25 02:09:25 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2024-10-25 02:09:25 -0400 |
| commit | c87b5c53077c02bf21234e24bf976aa7a5f2bac8 (patch) | |
| tree | 9775f4cb462c1e65814c20f479ead8d344a92927 /ui/routes/(login) | |
| parent | 3a2f37e41681c2b233728c3cbddaea3f9fc74c08 (diff) | |
Take a swing at putting an invite UI in place.
Diffstat (limited to 'ui/routes/(login)')
| -rw-r--r-- | ui/routes/(login)/invite/[invite]/+page.svelte | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/ui/routes/(login)/invite/[invite]/+page.svelte b/ui/routes/(login)/invite/[invite]/+page.svelte index b9a4a97..798dfb7 100644 --- a/ui/routes/(login)/invite/[invite]/+page.svelte +++ b/ui/routes/(login)/invite/[invite]/+page.svelte @@ -23,8 +23,12 @@ </script> {#await data} -<p>Loading invitation…</p> +<div class="card m-4 p-4"> + <p>Loading invitation…</p> +</div> {:then { invite }} -<p>Hi there! {invite.issuer} invites you to the conversation.</p> +<div class="card m-4 p-4"> + <p>Hi there! {invite.issuer} invites you to the conversation.</p> +</div> <LogIn bind:disabled bind:username bind:password on:submit={onSubmit} /> {/await} |
