49 lines
1.8 KiB
HTML
49 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html v-bind:lang="$i18n.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></email-header>
|
|
</div>
|
|
</div>
|
|
<!-- Block -->
|
|
<div class="grid-row">
|
|
<div class="grid-block vn-pa-ml">
|
|
<p>
|
|
{{ $t('Click on the following link to change your password.') }}
|
|
<a :href="url">{{ $t('subject') }}</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Footer block -->
|
|
<div class="grid-row">
|
|
<div class="grid-block">
|
|
<email-footer></email-footer>
|
|
</div>
|
|
</div>
|
|
<!-- Empty block -->
|
|
<div class="grid-row">
|
|
<div class="grid-block empty"></div>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html>
|