Product Card Template
<%@ page contentType="text/html;charset=UTF-8"%>
<html>
<head>
</head>
<body>
<div class="product-item base-product product-plan" data-bind="css:{'selected': selected()}">
<div class="title-wrapper">
<div class="icon" style="background-image: url('https://yoururl.com')"></div>
</div>
<p class="sub-header-text">Entry-level, out-of-the-box feature set for individuals</p>
<p class="font-normal firstLine" style="font-weight: 500; margin: 32px 0px 30px;">Desktop access</p>
<hr>
<p class="plan-price"><span>${currency.symbol}</span>#{price}#</p>
<p class="font-normal no-margin priceCurrency">#{currency.text}#/#{uom}#/#{billingPeriod}#</p>
<div class="button-wrapper">
<div class="qty-container" data-bind="visible: selected()">
<input type="text" class="input-spinner" min="0" data-bind="value: quantity">
</div>
<button class="btn btn-primary" data-bind="click: select">SELECT</button>
</div>
</div>
</body>
</html>Last updated
Was this helpful?
