===============================
02 October, 2019 - Version 1.2
===============================

-------------------------------------------------------------------------------------------
Backup your theme/style folder and files before applying these updates.
-------------------------------------------------------------------------------------------
The best way is to use a compare tool, like: https://sourceforge.net/projects/kdiff3/files/
and use it to compare the 'folders' (the version you're using with the new version)
-------------------------------------------------------------------------------------------
Updating HTML Templates Requires Manual Work.
-------------------------------------------------------------------------------------------


*. WHMCS template updated to be compatible with latest "WHMCS Version 7.8.3":
-----------------------------------------------------------------------------

    *. New File/Folders Added:
    -------------------
	-> account-paymentmethods-billing-contacts.tpl
	-> account-paymentmethods-manage.tpl
	-> account-paymentmethods.tpl
	-> css/blue.png
	-> css/blue@2x.png
	-> includes/generate-password.tpl
	-> password-reset-change-prompt.tpl
	-> password-reset-container.tpl
	-> password-reset-email-prompt.tpl	
	-> password-reset-security-prompt.tpl
	
    *. Files Affected (Need to Replace):
    ------------------
	-> clientareaaddcontact.tpl
	-> clientareachangepw.tpl
	-> clientareacontacts.tpl
	-> clientareacreditcard.tpl
	-> clientareadomaindetails.tpl
	-> clientareainvoices.tpl
	-> clientareaproductdetails.tpl
	-> clientareaquotes.tpl
	-> clientareasecurity.tpl
	-> clientregister.tpl
	-> creditcard.tpl
	-> css/all.css
	-> css/all.min.css
	-> css/invoice.css
	-> css/styles.css
	-> invoicepdf.tpl
	-> js/scripts.js
	-> js/scripts.min.js
	-> js/whmcs.js
	-> login.tpl
	-> masspay.tpl
	-> oauth/login.tpl
	-> pwreset.tpl
	-> store/css/style.css
	-> store/ssl/competitive-upgrade.tpl
	-> store/ssl/dv.tpl
	-> store/ssl/ev.tpl
	-> store/ssl/index.tpl
	-> store/ssl/ov.tpl
	-> store/ssl/shared/certificate-pricing.tpl
	-> store/ssl/shared/features.tpl
	-> store/ssl/shared/logos.tpl
	-> store/ssl/shared/nav.tpl
	-> viewannouncement.tpl
	-> viewinvoice.tpl
	-> viewquote.tpl
	-> viewticket.tpl


	*. File Changes:
	--------------------------
	-> header.tpl
	-----------------------------

		=> Deleted:
		-----------
		Line 294: <input type="submit" name="transfer" class="btn transfer{$captcha->getButtonClass($captchaForm)}" value="{$LANG.domainstransfer}" />

		=> Added:
		---------
		Line 294: <input type="submit" id="btnTransfer" class="btn transfer{$captcha->getButtonClass($captchaForm)}" value="{$LANG.domainstransfer}" />
		
		(After line 284 include new line): <input type="hidden" name="transfer" />

		
	-> footer.tpl
	-----------------------------

		=> Deleted:
		-----------
		Line 119: <p class="m-0 pt-sans"><a href="index.html">VOIFone</a> &copy; Copyright {$date_year} . All Rights Reserved.</p>
		Line 146: <div class="modal-content panel panel-primary">
		Line 149: <span class="sr-only">Close</span>
		Line 151: <h4 class="modal-title">Title</h4>
		Line 154: Loading...
		Line 158: <i class="fas fa-circle-notch fa-spin"></i> Loading...
		Line 161: Close
		Line 164: Submit

		=> Added:
		---------
		Line 136: <p class="m-0 pt-sans">{lang key="copyrightFooterNotice" year=$date_year company=$companyname}</p>
		Line 146: <div class="modal-content panel-primary">
		Line 150: <span class="sr-only">{$LANG.close}</span>
		Line 152: <h4 class="modal-title"></h4>
		Line 155: {$LANG.loading}
		Line 159: <i class="fas fa-circle-notch fa-spin"></i>
                {$LANG.loading}
		Line 162: {$LANG.close}
		Line 165: {$LANG.submit}
		(After line 171 include new line): {include file="$template/includes/generate-password.tpl"}


	-> css/template/style.css
	-----------------------------
	
		=> Deleted:
		-----------
		Line 1114: 
			.btn {
				display: inline-block;
				padding: 14px 20px 18px;
				color: #ffffff;
				font-weight: 500;
				line-height: 1;
				border: none;
				white-space: nowrap;
				background-color: #5245c2 !important;
			}
			.btn:hover {
				color: #ffffff;
				background-color: #5f50e5 !important;
			}

		=> Added:
		---------
		Line 1114:
			.btn {
				display: inline-block;
				color: #ffffff;
				font-weight: 500;
				border: 1px solid #5245c2 !important;
				white-space: nowrap;
				background-color: #5245c2 !important;
			}
			.btn:hover {
				color: #ffffff !important;
				background-color: #5f50e5 !important;
			}
		Line 4708: 
			input[type="checkbox"], 
			input[type="radio"] {
				min-height: 30px;
				margin-top: 0;
			}
