Adjustments to the registration page ref: OwlBoard/backend#39

This commit is contained in:
Fred Boniface
2023-08-24 14:47:48 +01:00
parent 55831164ed
commit 078d1d473f
2 changed files with 31 additions and 16 deletions

View File

@@ -9,7 +9,7 @@
const title = 'Register';
let state = 'unreg';
let isLoading = false;
let isLoading = true;
let inputValue = '';
function handleInput(event) {
@@ -46,14 +46,16 @@
} else if (auth.uuidPresent === true) {
state = 'reg';
}
isLoading = false;
});
</script>
{#if isLoading}
<Loading />
{/if}
<Header {title} />
{#if isLoading}
<Loading />
{:else}
{#if state == 'unreg'}
<p>The staff version of OwlBoard offers several extra features:</p>
<ul>
@@ -92,6 +94,7 @@
browser.
</p>
{/if}
{/if}
<Nav />
<style>