113 lines
3.4 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;
}
2020-10-27 02:13:34 -08:00
.dllist a, .dllist p {
2020-09-20 17:52:56 -07:00
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>
2022-06-16 20:08:38 -07:00
<div style="float: left;width:200px;">
<h6>FemBanking Desktop Application</h6>
<p>Requires Windows XP or newer.</p>
<p><img width="16" height="16" src="/assets/DownloadIcon.gif"> <a href="/downloads/FemboyBanking.exe">Download (<cfoutput>#sizeKb#</cfoutput> KB)</a></p>
</div>
<cfset filename = expandpath("FemboyInstaller.msi")>
<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-10-27 01:26:07 -08:00
2022-06-16 20:08:38 -07:00
<div style="margin-left:240px;width:240px;">
<h6>FemboyWatchdog</h6>
<p>Requires Windows XP or newer.</p>
<p><img width="16" height="16" src="/assets/DownloadIcon.gif"> <a href="/downloads/FemboyInstaller.msi">Download V0.4.1 (<cfoutput>#sizeKb#</cfoutput> KB)</a></p>
</div>
2020-10-27 02:13:34 -08:00
<br>
2020-10-27 01:26:07 -08:00
<cfset filename = expandpath("FemboyCliquere.exe")>
<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>
<h6>Femboy Cliquere</h6>
2021-04-08 22:41:10 -07:00
<p>Requires Windows 95 or newer.</p>
<p><img width="16" height="16" src="/assets/DownloadIcon.gif"> <a href="/downloads/FemboyCliquere.exe">Download V1.0 (<cfoutput>#sizeKb#</cfoutput> KB)</a></p>
<br>
<cfset filename = expandpath("FemboyGeometry_1.0.0.rar")>
<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>
<h6>Femboy Geometry</h6>
<p>Requires Windows 98 SE™ or newer.</p>
<p><img width="16" height="16" src="/assets/DownloadIcon.gif"> <a href="/downloads/FemboyGeometry_1.0.0.rar">Download V1.0 (<cfoutput>#sizeKb#</cfoutput> KB)</a></p>
2020-10-27 01:26:07 -08:00
2020-09-20 17:45:14 -07:00
</div>
2020-09-21 17:41:51 -07:00
<cfinclude template="../../templates/Footer.cfm">