Show plan updated confirmation on invoices page
This commit is contained in:
parent
0ab1eaa08c
commit
52b8f3af87
2 changed files with 15 additions and 2 deletions
|
@ -1,6 +1,17 @@
|
|||
<div class="ui-widget ui-widget-content block-shadow clearfix padded-strong billing-panel">
|
||||
<H2>Invoices</H2>
|
||||
<p style="text-align: center;"><?=_("Tip: To pay an invoice, click \"View Invoice\"<br> and look for the \"Checkout\" button.")?></p>
|
||||
<?php
|
||||
if (array_key_exists("planupdated", $_GET))
|
||||
{
|
||||
$topText = _("<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle.");
|
||||
$topTextClass = "status-good";
|
||||
}
|
||||
else {
|
||||
$topText = _("Tip: To pay an invoice, click \"View Invoice\"<br> and look for the \"Checkout\" button.");
|
||||
}
|
||||
|
||||
?>
|
||||
<p style="text-align: center; padding-left: 20px;" class="<?=$topTextClass?>"><?=$topText?></p>
|
||||
<table id="invoices_table">
|
||||
<tr class="header">
|
||||
<th>Date Issued</th>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue