1{if $reason eq "supportandupdates"}
2
3 {include file="$template/includes/alert.tpl" type="error" msg="{$LANG.supportAndUpdatesExpiredLicense}{if $licensekey}: {$licensekey}{else}.{/if}" textcenter=true}
4
5{/if}
6
7{if $reason eq "supportandupdates"}
8
9 <p>{$LANG.supportAndUpdatesRenewalRequired}</p>
10
11 <form action="{$systemsslurl}cart.php?a=add" method="post">
12 <input type="hidden" name="productid" value="{$serviceid}" />
13 <input type="hidden" name="aid" value="{$addonid}" />
14 <p align="center"><input type="submit" value="{$LANG.supportAndUpdatesClickHereToRenew} »" class="btn" /></p>
15 </form>
16
17{else}
18
19 <p>{$LANG.downloadproductrequired}</p>
20
21 {if $prodname}
22 {include file="$template/includes/alert.tpl" type="info" msg=$prodname textcenter=true}
23 {else}
24 {include file="$template/includes/alert.tpl" type="info" msg=$addonname textcenter=true}
25 {/if}
26
27 {if $pid || $aid}
28 <form action="{$systemsslurl}cart.php" method="post">
29 {if $pid}
30 <input type="hidden" name="a" value="add" />
31 <input type="hidden" name="pid" value="{$pid}" />
32 {elseif $aid}
33 <input type="hidden" name="gid" value="addons" />
34 {/if}
35 <p align="center"><input type="submit" value="{$LANG.ordernowbutton} »" class="btn" /></p>
36 </form>
37 {/if}
38
39{/if}
40