55 lines
2.1 KiB
HTML
55 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<title>{{ $t('subject') }}</title>
|
|
</head>
|
|
<body>
|
|
<section class="container">
|
|
<!-- Header component -->
|
|
<email-header></email-header>
|
|
<!-- End header component -->
|
|
<section class="main">
|
|
<!-- Title block -->
|
|
<div class="title">
|
|
<h1>{{ $t('title') }}</h1>
|
|
</div>
|
|
<!-- Title block end -->
|
|
|
|
<p>{{$t('description.dear')}},</p>
|
|
<p>{{$t('description.instructions')}}</p>
|
|
<p v-html="$t('description.followGuide')"></p>
|
|
<p v-html="$t('description.downloadFrom')"></p>
|
|
|
|
<h1>{{$t('sections.QLabel.title')}}</h1>
|
|
<p>{{$t('sections.QLabel.description')}}:</p>
|
|
<ol>
|
|
<li v-for="step in $t('sections.QLabel.steps')">
|
|
<span v-html="step"></span>
|
|
</li>
|
|
</ol>
|
|
|
|
<!-- Help section -->
|
|
<h1>{{$t('sections.help.title')}}</h1>
|
|
<p>{{$t('sections.help.description')}}</p>
|
|
<p v-html="$t('sections.help.remoteSupport')"></p>
|
|
<!-- End help section-->
|
|
|
|
<p>
|
|
<section v-if="salesPersonName">
|
|
{{$t('salesPersonName')}}: <strong>{{salesPersonName}}</strong>
|
|
</section>
|
|
<section v-if="salesPersonPhone">
|
|
{{$t('salesPersonPhone')}}: <strong>{{salesPersonPhone}}</strong>
|
|
</section>
|
|
<section v-if="salesPersonEmail">
|
|
{{$t('salesPersonEmail')}}:
|
|
<strong><a v-bind:href="`mailto: salesPersonEmail`" target="_blank">{{salesPersonEmail}}</strong>
|
|
</section>
|
|
</p>
|
|
</section>
|
|
<!-- Footer component -->
|
|
<email-footer :locale="locale"></email-footer>
|
|
<!-- End footer component -->
|
|
</section>
|
|
</body>
|
|
</html> |