HEX
Server: Apache
System: Linux p3plzcpnl506847.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: slfopp7cb1df (5698090)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/slfopp7cb1df/public_html/Call/master/public/callcenter/index.html
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <title>Twilio Contact Center: Call Agent Login</title>

  <link rel="stylesheet" href="/styles/bootstrap.min.css" type="text/css" />
  <link rel="stylesheet" href="/styles/default.css" type="text/css" />

</head>

<body class="container" ng-app="callcenterApplication" ng-cloak>

  <div class="row">

    <div class=" col-md-6 col-md-offset-3">
      <h2>Welcome Agent<a href="/" class="header-home-link">Back Home</a></h2>
      <p class="lead">Please log in with your agent name</p>
    </div>

    <div ng-controller="LoginController" class="well col-md-6 col-md-offset-3">

      <form ng-submit="login()" class="form-horizontal" name="loginForm">

        <div class="form-group">
          <div class="col-xs-12">
            <input class="form-control" ng-focus="reset()" type="text" name="friendlyName" placeholder="Name" ng-model="worker.friendlyName" required>
          </div>
        </div>

        <div class="form-group">
          <div class="col-xs-12">
            <button ng-disabled="loginForm.friendlyName.$invalid" type="submit" class="btn btn-primary">Log In</button>
          </div>
        </div>

        <div ng-messages="loginForm.friendlyName.$error" role="alert">
          <div ng-message="required" ng-show="loginForm.friendlyName.$touched" class="alert alert-danger">Name is required</div>
        </div>

        <div ng-messages="loginForm.$error" role="alert">
          <div ng-message="notFound"  class="alert alert-danger" style="margin-bottom:0px">Worker does not exist</div>
          <div ng-message="serverError" class="alert alert-danger" style="margin-bottom:0px">
            <strong>Oh snap!</strong><br>An error occured, please check JavaScript console for details
          </div>
        </div>

      </form>

    </div>

  </div>

  <script src="/scripts/angular.min.js"></script>
  <script src="/scripts/angular-messages.min.js"></script>
  <script src="LoginController.js"></script>

  </body>
  </html>