79 lines
2.4 KiB
Vue
79 lines
2.4 KiB
Vue
<template>
|
|
<div class="smart-credit-pkg">
|
|
<div class="link-area">
|
|
<a :href="`${app_base_url}/login`">
|
|
Already a member? Log In
|
|
</a>
|
|
</div>
|
|
<div style="margin-top: 40%;" class="report-card p-3 report-card--best report-card__aside mt-5 report-card--info">
|
|
<div class="report-card__header pb-3">
|
|
<h5>
|
|
<strong>
|
|
<img :src="`${img_url}`" alt="SmartCredit" class="provider-logo">
|
|
{{package.labels[package_id]}}
|
|
</strong>
|
|
</h5>
|
|
</div>
|
|
<!-- <div class="report-card__price p-2">-->
|
|
|
|
<!-- <h4> ${{package.prices[package_id]}}/mo </h4>-->
|
|
<!-- <span> Cancel Anytime </span>-->
|
|
|
|
<!-- </div>-->
|
|
<div class="report-card__points py-2 pt-3">
|
|
<ul class="points">
|
|
<li>
|
|
<i class="fas fa-check-circle"></i>
|
|
<strong> Unlimited {{company_Name}} Challenges/Letter Attacks </strong>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div class="report-card__points py-2">
|
|
<ul class="points" >
|
|
<li v-for="subitem in reportProviders.IdentityIQPoints"><i class="fas fa-check-circle"></i> {{subitem}}</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="report-card__text py-2">
|
|
<p>
|
|
Includes Full 6 Wave attacks,
|
|
that will allow you to effectively and efficiently
|
|
challenge all inaccurate negative items
|
|
with a click of a button in 45 seconds or less.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="report-card__action">
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import pkg from "../../helper/package";
|
|
import reportProviders from "../../helper/report_provider";
|
|
|
|
export default {
|
|
props:{
|
|
package_id:{
|
|
required:true
|
|
},
|
|
},
|
|
data(){
|
|
return {
|
|
package:pkg,
|
|
app_base_url: APP_URL,
|
|
reportProviders : reportProviders,
|
|
img_url : APP_URL+'/images/'+APP_NAME+'_logo.png',
|
|
company_Name:COMPANY_NAME
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<style>
|
|
|
|
@import url("./../../../css/smartcredit.css");
|
|
|
|
</style>
|