mirror of
https://github.com/moonlight-stream/moonlight-chrome.git
synced 2025-08-17 08:36:42 +00:00
54 lines
1.7 KiB
HTML
54 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Pragma" content="no-cache">
|
|
<meta http-equiv="Expires" content="-1">
|
|
<title>Moonlight</title>
|
|
<script type="text/javascript" src="index.js"></script>
|
|
<script type="text/javascript" src="common.js"></script>
|
|
</head>
|
|
<body data-name="moonlight-chrome" data-width="1280" data-height="720" data-tools="pnacl" data-configs="Debug Release" data-path="{tc}/{config}">
|
|
|
|
<div id="title">
|
|
<h1>Moonlight Streaming</h1>
|
|
<h2>Chrome App Status: <code id="statusField">NO-STATUS</code></h2>
|
|
</div>
|
|
|
|
<p>Enter the IP/hostname of the GFE streaming computer, or select one from the history:</p>
|
|
<input type="text" size="15" id="GFEHostIPField" value="127.0.0.1">
|
|
|
|
<select>
|
|
<option value="">No history available</option>
|
|
</select>
|
|
|
|
<p></p>
|
|
|
|
<button id="pairButton">Pair</button>
|
|
<button id="showAppsButton">Retrieve App List</button>
|
|
|
|
<p></p>
|
|
|
|
<div id="testingDiv" style="border:3px solid red">
|
|
<button id="startButton">Start Testing Stuff</button>
|
|
<button id="stopButton">Stop Testing Stuff</button>
|
|
</div>
|
|
|
|
<div hidden id="gameSelectionDiv">
|
|
<p>Select a game to run</p>
|
|
<select>
|
|
<option value="game_id_1">Game Name 1</option>
|
|
<option value="game_id_2">Game Name 2</option>
|
|
<option value="game_id_3">Game Name 3</option>
|
|
</select>
|
|
<button id="startGameButton">Run Game</button>
|
|
<button id="quitGameButton">Quit Current Game</button>
|
|
</div>
|
|
|
|
|
|
<!-- The NaCl plugin will be embedded inside the element with id "listener".
|
|
See common.js. -->
|
|
<div id="listener"></div>
|
|
</body>
|
|
</html>
|
|
|