66 lines
2.9 KiB
HTML
66 lines
2.9 KiB
HTML
<!DOCTYPE html>
|
|
<html v-bind:lang="locale">
|
|
<head>
|
|
<meta name="viewport" content="width=device-width">
|
|
<meta name="format-detection" content="telephone=no">
|
|
<title>{{ $t('subject') }}</title>
|
|
</head>
|
|
<body>
|
|
<table class="grid">
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
<!-- Empty block -->
|
|
<div class="grid-row">
|
|
<div class="grid-block empty"></div>
|
|
</div>
|
|
<!-- Header block -->
|
|
<div class="grid-row">
|
|
<div class="grid-block">
|
|
<email-header v-bind="$props"></email-header>
|
|
</div>
|
|
</div>
|
|
<!-- Block -->
|
|
<div class="grid-row">
|
|
<div class="grid-block vn-pa-lg">
|
|
<h1>{{ $t('title') }}</h1>
|
|
<p>{{ $t('sections.introduction.title') }},</p>
|
|
<p v-html="`${$t('sections.introduction.description')}:`"></p>
|
|
|
|
<p>
|
|
<section>
|
|
<span>{{ $t('sections.pay.method') }}:</span>
|
|
<strong>{{payMethod.name}}</strong>
|
|
</section>
|
|
<section v-if="payMethod.code != 'card'">
|
|
<span>{{ $t('sections.pay.day') }}:</span>
|
|
<strong>{{ $t('sections.pay.dueDay', [payMethod.dueDay]) }}</strong>
|
|
</section>
|
|
</p>
|
|
|
|
<p v-if="payMethod.code == 'bankDraft'"
|
|
v-html="$t('sections.pay.accountImplicates', [accountAddress])">
|
|
</p>
|
|
<p v-else-if="payMethod.code == 'card'">
|
|
{{ $t('sections.pay.cardImplicates') }}
|
|
</p>
|
|
|
|
<p>{{ $t('notifyAnError') }}</p>
|
|
</div>
|
|
</div>
|
|
<!-- Footer block -->
|
|
<div class="grid-row">
|
|
<div class="grid-block">
|
|
<email-footer v-bind="$props"></email-footer>
|
|
</div>
|
|
</div>
|
|
<!-- Empty block -->
|
|
<div class="grid-row">
|
|
<div class="grid-block empty"></div>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html> |