salix/print/templates/email/auth-code/auth-code.html

20 lines
644 B
HTML
Raw Normal View History

2023-04-06 12:59:25 +00:00
<email-body v-bind="$props">
<div class="grid-row">
<div class="grid-block vn-pa-ml">
<h1>{{ $t('title') }}</h1>
<p v-html="$t('description')"></p>
<p v-html="$t('device', [device])"></p>
<p v-html="$t('ip', [ip])"></p>
2023-04-06 12:59:25 +00:00
</div>
</div>
<div class="grid-row">
<div class="grid-block vn-pa-ml">
<p>{{$t('Enter the following code to continue to your account')}}</p>
<div class="code vn-pa-sm vn-m-md">
{{ code }}
</div>
2023-04-11 06:56:50 +00:00
<p>{{$t('It expires in 5 minutes')}}</p>
2023-04-06 12:59:25 +00:00
</div>
</div>
</email-body>