mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-10 07:01:21 +00:00
83 lines
3.8 KiB
HTML
83 lines
3.8 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">
|
|
|
|
<!-- Global status/error dialog -->
|
|
<div ng-class="{shown: status}" class="status-outer">
|
|
<div class="status-middle">
|
|
|
|
<guac-notification
|
|
class-name="status.className"
|
|
title="status.title"
|
|
text="status.text"
|
|
progress-text="status.progress.text"
|
|
progress-unit="status.progress.unit"
|
|
progress-ratio="status.progress.ratio"
|
|
progress="status.progress.value"
|
|
actions="status.actions"
|
|
countdown-text="status.countdown.text"
|
|
countdown="status.countdown.remaining"
|
|
default-callback="status.countdown.callback"/>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div id="content" ng-view>
|
|
</div>
|
|
|
|
<!-- Notification area -->
|
|
<div id="notificationArea">
|
|
<div ng-repeat="wrapper in notifications">
|
|
|
|
<guac-notification
|
|
class-name="wrapper.notification.className"
|
|
title="wrapper.notification.title"
|
|
text="wrapper.notification.text"
|
|
progress-text="wrapper.notification.progress.text"
|
|
progress-unit="wrapper.notification.progress.unit"
|
|
progress-ratio="wrapper.notification.progress.ratio"
|
|
progress="wrapper.notification.progress.value"
|
|
actions="wrapper.notification.actions"
|
|
countdown-text="wrapper.notification.countdown.text"
|
|
countdown="wrapper.notification.countdown.remaining"
|
|
default-callback="wrapper.notification.countdown.callback"/>
|
|
|
|
<div>
|
|
</div>
|
|
|
|
<script type="text/javascript" src="guacamole.min.js"></script>
|
|
</body>
|
|
</html>
|