feat: (auth) Add ability to signup with e-mail

This commit is contained in:
2024-06-14 15:19:29 -04:00
parent fc035106d0
commit 1526a10630
7 changed files with 206 additions and 109 deletions

View File

@@ -29,35 +29,37 @@
color="darkblue"
filled></q-input>
<q-card-actions>
<q-space />
<q-btn
type="button"
@click="doLogin"
label="Login"
color="primary"></q-btn>
<q-space />
<q-btn
flat
color="secondary"
to="/pwreset">
Reset password
</q-btn>
<!-- <q-btn
type="button"
@click="register"
color="secondary"
label="Register"
flat
></q-btn> -->
</q-card-actions>
</q-card-section>
</q-form>
<q-card-section>
<q-card-section class="q-pa-none">
<div class="row justify-center q-ma-sm">
<q-btn
type="button"
:to="{ name: 'signup' }"
color="primary"
label="SignUp with E-mail"
style="width: 300px" />
</div>
<div class="row justify-center q-ma-sm">
<GoogleOauthComponent />
</div>
<div class="row justify-center q-ma-sm">
<DiscordOauthComponent />
</div>
<div class="row justify-center">
<q-btn
flat
color="secondary"
to="/pwreset"
label="Forgot Password?" />
</div>
</q-card-section>
</q-card>
</q-page>