mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
24 lines
560 B
Vue
24 lines
560 B
Vue
<template>
|
|
<b-container>
|
|
<b-row>
|
|
<b-col>
|
|
<b-card class="p-0 gradido-custom-background">
|
|
<div class="p-4">
|
|
{{ $t('form.thx') }}
|
|
<hr />
|
|
{{ $t('form.send_transaction_success') }}
|
|
</div>
|
|
<p class="text-center mt-3">
|
|
<b-button variant="success" @click="$emit('on-reset')">{{ $t('form.close') }}</b-button>
|
|
</p>
|
|
</b-card>
|
|
</b-col>
|
|
</b-row>
|
|
</b-container>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'TransactionResultSend',
|
|
}
|
|
</script>
|