54 lines
1.6 KiB
Plaintext
Raw Normal View History

2020-09-20 12:17:29 -07:00
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Download Centre - FemboyFinancial Online Webportal</title>
<link rel="stylesheet" href="/css/main.css">
<style>
2020-09-20 17:45:14 -07:00
body {
background-image: url('/assets/Downloads.gif');
2020-09-21 17:41:51 -07:00
background-color: #1600FF;
2020-09-20 17:52:56 -07:00
background-repeat: no-repeat;
color: #EE2D24;
}
.copyright, .footerlinks a {
2020-09-20 17:45:14 -07:00
color: #EE2D24;
}
.dllist {
margin: 65px 75px;
height: 200px;
}
2020-09-20 17:53:45 -07:00
.dllist p, .dllist h6 {
2020-09-20 17:52:56 -07:00
margin: 0;
2020-09-20 17:53:45 -07:00
}
.dllist h6 {
2020-09-20 17:52:56 -07:00
margin-bottom: 10px;
}
.dllist a {
color: #EE2D24;
font-size: 9px;
}
2020-09-20 12:17:29 -07:00
</style>
</head>
<body>
2020-09-20 17:45:14 -07:00
<img width="177" height="112" src="/assets/DownloadCentre.gif">
<div class="dllist">
2020-09-21 11:28:28 -07:00
2020-09-21 17:41:51 -07:00
<cfset filename = expandpath("FemboyBanking.exe")>
2020-09-21 11:28:28 -07:00
<cftry>
<cffile file = "#filename#" action = "read" variable = "content">
<cfset sizeKb = Round(Len(content) / 1000)>
<cfcatch type="any">
<cfoutput>
<p>#cfcatch.message#</p>
<p>#cfcatch.detail#</p>
</cfoutput>
</cfcatch>
</cftry>
2020-09-20 17:45:14 -07:00
<h6>FemBanking Desktop Application</h6>
2020-09-21 11:28:28 -07:00
<p><img width="16" height="16" src="/assets/DownloadIcon.gif"> <a href="/downloads/FemboyBanking.exe">Download (<cfoutput>#sizeKb#</cfoutput> KB)</a></p>
2020-09-20 17:45:14 -07:00
</div>
2020-09-21 17:41:51 -07:00
<cfinclude template="../../templates/Footer.cfm">