Auth: added

This commit is contained in:
2023-12-31 17:16:15 +01:00
parent 5c769bfa2f
commit dabd5ea0f0
17 changed files with 771 additions and 75 deletions

View File

@@ -1,3 +1,14 @@
<script setup>
import FormBase from '@/components/FormBase.vue'
</script>
<template>
<b>signup</b>
</template>
<FormBase btn-txt="Signup" api-endpoint="/user/signup">
<label for="username">Username:</label>
<input type="text" id="username" placeholder="Username" />
<label for="email">Email:</label>
<input type="email" id="email" placeholder="Email" />
<label for="password">Password:</label>
<input type="password" id="password" placeholder="Password" />
</FormBase>
</template>