File: /home/slfopp7cb1df/public_html/Call/master/public/index.html
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Twilio Contact Center</title>
<link rel="stylesheet" href="/styles/bootstrap.min.css" type="text/css" />
<link rel="stylesheet" href="/styles/default.css" type="text/css" />
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css"
type="text/css" rel="stylesheet" />
</head>
<body ng-app="indexApplication">
<div class="container" style="max-width:960px">
<div class="row">
<div class="page-header col-md-12">
<h1>Twilio Contact Center</h1>
</div>
</div>
<div class="row" ng-controller="IndexController" ng-init="validateSetup()">
<div class="col-md-4 col-md-push-8">
<div ng-if="setup == 'VALID'" class="alert alert-dismissible alert-success">
<strong>Well done!</strong><br />You sucessfully setup the demo.
</div>
<div ng-if="setup == 'INVALID'" class="alert alert-dismissible alert-danger">
<strong>Oh snap!</strong><br />
<span ng-if="code == 'SERVER_TIMEOUT'">A connection timeout occured. Your browser could not retrieve data. Please check if your server is up and running.</span>
<span ng-if="code == 'TWILIO_ACCOUNT_SID_INVALID'">The environment variable TWILIO_ACCOUNT_SID is not set or incorrect. If you are on Heroku please update your application settings.</span>
<span ng-if="code == 'TWILIO_AUTH_TOKEN_INVALID'">The environment variable TWILIO_AUTH_TOKEN is not set or incorrect. If you are on Heroku please update your application settings.</span>
<span ng-if="code == 'TWILIO_WORKSPACE_SID_INVALID'">The environment variable TWILIO_WORKSPACE_SID is not set or incorrect. If you are on Heroku please update your application settings.</span>
<span ng-if="code == 'TWILIO_ACCOUNT_NOT_ACCESSIBLE'">The application could not access the Twilio API with the provided credentials. Please verify Account Sid and Auth Token.</span>
<span ng-if="code == 'TWILIO_WORKSPACE_NOT_ACCESSIBLE'">The application could not access the your Twilio Taskrouter workspace please verify the Workspace Sid.</span>
<span ng-if="code == 'TWILIO_APPLICATION_SID_INVALID'">The TwiML Applications SID is not set, please complete <strong>http://<your_application>/setup</strong> first</span>
<span ng-if="code == 'TWILIO_APPLICATION_NOT_ACCESSIBLE'">The application could not access the TwiML Application.</span>
<span ng-if="code == 'TWILIO_PHONE_NUMBER_UNKNOWN'">The configured Twilio number was not found. Please run <strong>http://<your_application>/setup</strong></span>
<span ng-if="code == 'TWILIO_PHONE_NUMBER_VOICE_URL_INVALID'">The Twilio number Voice URL does not point to this server. Please run <strong>http://<your_application>/setup</strong></span>
<span ng-if="code == 'TWILIO_UNKNOWN_ERROR'">Please check the server console.</span>
</div>
</div>
<div class="col-md-8 col-md-pull-4">
<h3>Call Center Administration</h3>
<span>A basic administration interface to create and delete new call centre agents.</span><br><br>
<div><a href="/administration/index.html" class="btn btn-primary">Open</a></div>
<h3>Call Agent Login</h3>
<span>The working environment for agents. Agents need to open this page and log in.</span>
<br><br>
<div><a href="/callcenter/index.html" class="btn btn-primary">Open</a></div>
<h3>Company's Website</h3>
<span>Page for customers who want to talk to an agent. Users can request a callback, call the agents via phone, request video support or chat with an agent</span>
<br><br>
<div>
<a href="/contact/index.html" class="btn btn-primary">Inbound & Callback Request</a>
<a href="/contact/chat.html" class="btn btn-primary">Web Chat</a>
<a href="/contact/video.html" class="btn btn-primary">Video Call</a>
</div>
</div>
</div>
</div>
<script src="/scripts/angular.min.js"></script>
<script src="IndexController.js"></script>
</body>
</html>