mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-07 05:31:22 +00:00
58 lines
2.7 KiB
HTML
58 lines
2.7 KiB
HTML
<!--
|
|
Copyright 2014 Glyptodon LLC.
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
THE SOFTWARE.
|
|
-->
|
|
<!DOCTYPE html>
|
|
<html ng-app="index" ng-controller="indexController">
|
|
<head>
|
|
<link rel="icon" type="image/png" href="images/guacamole-logo-64.png"/>
|
|
<link rel="icon" type="image/png" sizes="144x144" href="images/guacamole-logo-144.png"/>
|
|
<link rel="apple-touch-icon" type="image/png" href="images/guacamole-logo-144.png"/>
|
|
<title ng-bind="page.title | translate"></title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no, target-densitydpi=medium-dpi"/>
|
|
<meta name="mobile-web-app-capable" content="yes"/>
|
|
<meta name="apple-mobile-web-app-capable" content="yes"/>
|
|
<link rel="stylesheet" type="text/css" href="guacamole.min.css">
|
|
</head>
|
|
<body ng-class="page.bodyClassName">
|
|
|
|
<!-- Content for logged-in users -->
|
|
<div ng-if="!expectedCredentials">
|
|
|
|
<!-- Global status/error dialog -->
|
|
<div ng-class="{shown: guacNotification.getStatus()}" class="status-outer">
|
|
<div class="status-middle">
|
|
<guac-notification notification="guacNotification.getStatus()"></guac-notification>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="content" ng-view>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- Login screen for logged-out users -->
|
|
<guac-login ng-show="expectedCredentials" form="expectedCredentials"></guac-login>
|
|
|
|
<script type="text/javascript" src="guacamole.min.js"></script>
|
|
</body>
|
|
</html>
|