Add:
- Initial dashboard draft - Login page - supabase magic link auth - env parsing
This commit is contained in:
parent
5b05cb4ff8
commit
fcc59f0afb
10 changed files with 329 additions and 16 deletions
14
src/routes/dashboard/Config.svelte
Normal file
14
src/routes/dashboard/Config.svelte
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<script lang="ts">
|
||||
let { markdown = '' } = $props();
|
||||
let text = $state(markdown);
|
||||
</script>
|
||||
<label for="text-input">Text</label>
|
||||
<textarea
|
||||
id="text-input"
|
||||
name="Onboarding agreement:"
|
||||
bind:value={text}
|
||||
placeholder="Enter text..."
|
||||
rows="20"
|
||||
></textarea>
|
||||
|
||||
<button type="submit">Submit</button>
|
||||
Loading…
Add table
Add a link
Reference in a new issue