2019-01-22 08:55:35 +00:00
|
|
|
<!DOCTYPE html>
|
2019-11-04 12:55:20 +00:00
|
|
|
<html v-bind:lang="locale">
|
2019-01-22 08:55:35 +00:00
|
|
|
<head>
|
2019-11-13 11:18:30 +00:00
|
|
|
<meta name="viewport" content="width=device-width">
|
|
|
|
<meta name="format-detection" content="telephone=no">
|
2019-01-22 08:55:35 +00:00
|
|
|
<title>{{ $t('subject') }}</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
2019-11-11 10:04:49 +00:00
|
|
|
<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">
|
2019-11-21 08:33:08 +00:00
|
|
|
<email-header v-bind="$props"></email-header>
|
2019-11-11 10:04:49 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- Block -->
|
|
|
|
<div class="grid-row">
|
2019-11-19 09:32:09 +00:00
|
|
|
<div class="grid-block vn-pa-lg">
|
2019-11-11 10:04:49 +00:00
|
|
|
<h1>{{ $t('title') }}</h1>
|
|
|
|
<p>{{ $t('sections.introduction.title') }},</p>
|
|
|
|
<p v-html="`${$t('sections.introduction.description')}:`"></p>
|
2019-01-22 08:55:35 +00:00
|
|
|
|
2019-11-11 10:04:49 +00:00
|
|
|
<p>
|
|
|
|
<section>
|
|
|
|
<span>{{ $t('sections.pay.method') }}:</span>
|
2019-11-19 11:53:25 +00:00
|
|
|
<strong>{{payMethod.name}}</strong>
|
2019-11-11 10:04:49 +00:00
|
|
|
</section>
|
2019-11-19 11:53:25 +00:00
|
|
|
<section v-if="payMethod.code != 'card'">
|
2019-11-11 10:04:49 +00:00
|
|
|
<span>{{ $t('sections.pay.day') }}:</span>
|
2019-11-19 11:53:25 +00:00
|
|
|
<strong>{{ $t('sections.pay.dueDay', [payMethod.dueDay]) }}</strong>
|
2019-11-11 10:04:49 +00:00
|
|
|
</section>
|
|
|
|
</p>
|
2019-01-22 08:55:35 +00:00
|
|
|
|
2019-11-19 11:53:25 +00:00
|
|
|
<p v-if="payMethod.code == 'bankDraft'"
|
|
|
|
v-html="$t('sections.pay.accountImplicates', [accountAddress])">
|
|
|
|
</p>
|
|
|
|
<p v-else-if="payMethod.code == 'card'">
|
2019-11-11 10:04:49 +00:00
|
|
|
{{ $t('sections.pay.cardImplicates') }}
|
|
|
|
</p>
|
2019-01-22 08:55:35 +00:00
|
|
|
|
2019-11-11 10:04:49 +00:00
|
|
|
<p>{{ $t('notifyAnError') }}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- Footer block -->
|
|
|
|
<div class="grid-row">
|
|
|
|
<div class="grid-block">
|
2019-11-21 08:33:08 +00:00
|
|
|
<email-footer v-bind="$props"></email-footer>
|
2019-11-11 10:04:49 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- Empty block -->
|
|
|
|
<div class="grid-row">
|
|
|
|
<div class="grid-block empty"></div>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2019-01-22 08:55:35 +00:00
|
|
|
</body>
|
|
|
|
</html>
|