Professional
Website Design
Custom Built • Mobile Friendly • Business Ready
Hosting: R570 per year
Website Application Form
Invoice Summary
Reference:
Website Design: R2000
Hosting: R570 per year
Total: R2570
Banking Details:
Phushanawe Technology (Pty) Ltd
Bank: Nedbank
Account Holder: Shego n Bucie Trading Projects
Account Type: Business Cheque Account
Account No: 1288764154
Branch Code: 141505
Branch Name: Burgersfort Mall
Email proof of payment to customercare@phushanawe.co.za
function showForm(){
document.getElementById("formSection").style.display="block";
document.getElementById("formSection") .scrollIntoView({behavior:"smooth"});
}
document.getElementById("websiteForm") .addEventListener("submit",function(e){
e.preventDefault();
const { jsPDF } = window.jspdf;
const name=document.getElementById("name").value; const email=document.getElementById("email").value; const phone=document.getElementById("phone").value; const business=document.getElementById("business").value; const domain=document.getElementById("domain").value;
const reference="WEB-"+Math.floor(100000+Math.random()*900000);
document.getElementById("paymentSection").style.display="block"; document.getElementById("ref").innerText=reference;
document.getElementById("paymentSection") .scrollIntoView({behavior:"smooth"});
/* PDF */
const doc=new jsPDF();
const today=new Date().toLocaleDateString();
doc.setFontSize(55); doc.setTextColor(235); doc.text("PHUSHANAWE",105,160,{ align:"center", angle:45 });
doc.setTextColor(0);
doc.setFontSize(22); doc.setFont("helvetica","bold"); doc.text("Phushanawe Technology",20,25);
doc.setFontSize(18); doc.text("INVOICE",150,25);
doc.setFontSize(10); doc.setFont("helvetica","normal");
doc.text("www.phushanawe.co.za",20,35); doc.text("customercare@phushanawe.co.za",20,41);
doc.line(20,48,190,48);
doc.text("Invoice Date: "+today,20,60); doc.text("Reference: "+reference,20,67);
doc.setFont("helvetica","bold"); doc.text("Bill To:",20,85);
doc.setFont("helvetica","normal");
doc.text(name,20,93); doc.text("Phone: "+phone,20,100); doc.text("Email: "+email,20,107); doc.text("Business: "+business,20,114); doc.text("Domain: "+domain,20,121);
doc.line(20,135,190,135);
doc.setFont("helvetica","bold"); doc.text("Service",20,145); doc.text("Amount",160,145);
doc.setFont("helvetica","normal");
doc.text("Website Design",20,160); doc.text("R2000",165,160);
doc.text("Hosting (1 Year)",20,170); doc.text("R570",165,170);
doc.line(20,180,190,180);
doc.setFontSize(14); doc.setFont("helvetica","bold"); doc.text("TOTAL: R2570",140,190);
/* BANK DETAILS */
doc.setFontSize(11);
doc.text("Banking Details",20,210);
doc.setFont("helvetica","normal");
doc.text("Phushanawe Technology (Pty) Ltd",20,220); doc.text("Bank: Nedbank",20,227); doc.text("Account Holder: Shego n Bucie Trading Projects",20,234); doc.text("Account Type: Business Cheque Account",20,241); doc.text("Account No: 1288764154",20,248); doc.text("Branch Code: 141505",20,255);
doc.text("Reference: "+reference,20,265);
doc.save("Phushanawe_Website_"+reference+".pdf");
/* EMAIL */
const subject="Website Design Application "+reference;
const body=` New Website Application
Reference: ${reference}
Name: ${name} Email: ${email} Phone: ${phone} Business: ${business} Domain: ${domain}
Website Design: R2000 Hosting: R570
Total: R2570 `;
window.location.href= "mailto:customercare@phushanawe.co.za?subject=" +encodeURIComponent(subject) +"&body="+encodeURIComponent(body);
});
