diff --git a/pbx.html b/pbx.html index 237e4c7..df2362b 100644 --- a/pbx.html +++ b/pbx.html @@ -1,17 +1,24 @@ - + - Document + Instant Quote + + + + - +
-
-
-
- - - -
-
-
Softphone only
- -
Use a powerful app as your office phone. For Windows, Mac, iOS and Android -
-
-
-
-
0
-
-
+

Why choose a Chris Humphrey Office National phone system?

+
+
+
+ +

Local support

+

Our team is based right here in Traralgon, providing top-tier support for local businesses like yours.

+
+
+ +

Totally customized

+

With a powerful featureset and mryiad of customization options, we'll make the phone system work perfectly for your business.

+
+
+ +

Cloud flexible

+

Our phone systems are not tied to your office, or even an internet connection - our services will work just about everywhere.

-
+
+
+
+
+
+ +

+ Exclusive offer +

+

+ Get your first three months free +

+

When you order a new phone system and commit to 12 months; you could save up to $120!

+
Get Started
+
Call us now   
+
+ +
+
+

Phone Numbers

+

We'll make switching to us easy - we just need to know what numbers you currently have and who they're with.

+ + + + + + + + + + + + + + + +
Phone NumberAccount NumberCurrent Carrier
+
+ +
+
+
+ +
+
+
+ +
+
+ Add +

Call types

+

Tell us how you use your current phone system so we can tailor a new system to your needs.

+
+
- +
-
Basic Deskphone
-
- Fanvil X3S Lite +
{{call.name}}
+
+ {{call.description}}
-
A modern, Enterprise-ready phone
-
-
-
0
-
- +
+
{{(options.callsSelection == $index) ? + "Selected" : "Select"}}
-
+
+

Handset options

+
+
- + +
-
Advanced Deskphone
+
{{phone.name}}
-
A high-end modern, Enterprise-ready phone
-
-
-
-
0
-
- -
-
-
-
- -
-
Executive Deskphone
- -
A high-end modern, Enterprise-ready phone
+
+
Add
-
-
-
0
-
+
+
+
{{phone.count}}
+
diff --git a/pbx.js b/pbx.js new file mode 100644 index 0000000..65cd4f6 --- /dev/null +++ b/pbx.js @@ -0,0 +1,76 @@ +var app = angular.module('instantQuote', []); +app.controller('PBX', function ($scope) { + $scope.options = { + callsSelection: 1, + "calls": [ + { + "name": "Mostly inbound", + "description": "Most calls that come through my phone system come from external parties", + "icon": "angle double down" + }, + { + "name": "Balanced", + "description": "There's a good balance of inbound and outbound calls", + "icon": "balance scale" + }, + { + "name": "Mostly outbound", + "description": "We make a lot of calls compared to how many we receive.", + "icon": "angle double up" + }, + { + "name": "Not sure", + "description": "Help me analyse my bill", + "icon": "question circle outline" + }, + ], + "phones": [ + { + "name": "Softphone only", + "tagline": "Use an app as your phone", + "description": "Use a powerful app as your office phone. For Windows, Mac, iOS and Android", + "image": "https://placehold.co/400x400" + }, + { + "name": "Standard deskphone", + "tagline": "Fanvil X3S Lite", + "description": "A modern, Enterprise-ready phone", + "image": "https://fanvil.com/upload/images/20220413/10124btj44.png" + }, + { + "name": "Advanced Deskphone", + "tagline": "Fanvil X6U", + "description": "A high-end modern, Enterprise-ready phone", + "image": "https://fanvil.com/upload/images/20210629/1500rx2r62.png" + }, + { + "name": "Executive Deskphone", + "tagline": "Fanvil X210", + "description": "A high-end modern, Enterprise-ready phone", + "image": "https://fanvil.com/upload/images/20210628/1127hv2046.png" + }, + ], + "phoneNumbers": [ + { + "phone": "", + "account": "", + "carrier": "" + } + ] + } + $scope.addOption = (item, increment = 1) => { + if (typeof item.count === "undefined") { + item.count = 1 + } else { + item.count+=increment + } + } + $scope.selectOption = (object,value) => { + $scope.options[object] = value; + } + $scope.addNumber = () => { + $scope.options.phoneNumbers.push({phone: '', account: '', carrier: ''}) + } + $scope.firstName = "John"; + $scope.lastName = "Doe"; +}); \ No newline at end of file diff --git a/yealink-cordless.png b/yealink-cordless.png new file mode 100644 index 0000000..ef8acbc Binary files /dev/null and b/yealink-cordless.png differ