Improved invite landing page UI

This commit is contained in:
Thaum Rystra
2020-05-19 00:28:31 +02:00
parent 18c9474570
commit e0fc5abe7b
2 changed files with 25 additions and 6 deletions

View File

@@ -1,9 +1,17 @@
<template lang="html">
<div>
Invite Error!
<p>
<v-layout
column
align-center
justify-center
>
<h2 style="margin: 48px 28px 16px">
Invite Error
</h2>
<h3>
{{ error.reason || error.message || error }}
</p>
</h3>
</v-layout>
</div>
</template>
@@ -12,7 +20,7 @@ export default {
props: {
error: {
type: [Object, String],
required: true,
default: '',
}
}
}

View File

@@ -1,6 +1,17 @@
<template lang="html">
<div>
Invite Success! You can now use DiceCloud.
<v-layout
column
align-center
justify-center
>
<h2 style="margin: 48px 28px 16px">
Invite Success
</h2>
<h3>
You can now use DiceCloud
</h3>
</v-layout>
</div>
</template>