Files
DiceCloud/app/imports/ui/pages/EmailVerificationSuccess.vue
Stefan Zermatten 359f18988c Account functionality extended, API authentication implemented
- Can now add a second email address to your account and delete one of 
your email addresses
- Reset password now works
- Resetting the password of an account without a password set will set 
one
- Email templates overhauled
- Login tokens limited to close previously devastating ($800 database 
bill) security hole
- Login with REST API now works
- Once logged in, authentication of API calls with token works
- Creatures can now be fetched using the API
2022-02-10 19:02:18 +02:00

25 lines
371 B
Vue

<template lang="html">
<div>
<v-layout
column
align-center
justify-center
>
<h2 style="margin: 48px 28px 16px">
Email Verified
</h2>
<h3>
Your email address has been verified
</h3>
</v-layout>
</div>
</template>
<script lang="js">
export default {
}
</script>
<style lang="css" scoped>
</style>