1
0
mirror of https://github.com/pkimpel/retro-b5500.git synced 2026-03-08 04:00:38 +00:00
Files
pkimpel.retro-b5500/webUI/B5500CardPunch.html

60 lines
2.4 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>B5500 Emulator Card Punch</title>
<!--
/***********************************************************************
* retro-b5500/emulator B5500CardPunch.html
************************************************************************
* Copyright (c) 2012, Nigel Williams and Paul Kimpel.
* Licensed under the MIT License, see
* http://www.opensource.org/licenses/mit-license.php
************************************************************************
* B5500 Card Punch device page.
*
* Implements the B5500 card punch peripheral.
*
************************************************************************
* 2013-06-16 P.Kimpel
* Original version, from B5500CardReader.html.
***********************************************************************/
-->
<meta name="Author" content="Nigel Williams & Paul Kimpel">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta http-equiv="Content-Style-Type" content="text/css">
<link id=defaultStyleSheet rel=stylesheet type="text/css" href="B5500Common.css">
<link id=cardPunchStyleSheet rel=stylesheet type="text/css" href="B5500CardPunch.css">
</head>
<body id=punchBody class=deviceBody>
<div id=CPDiv class=devicePanel>
<button id=CPNotReadyLight class="whiteButton whiteLit">NOT<br>READY</button>
<button id=CPRunoutBtn class="redButton">RUNOUT</button>
<button id=CPStopBtn class="redButton">STOP</button>
<button id=CPStartBtn class="greenButton">START</button>
<div id=CPOptionsDiv>
<input id=CPAlgolGlyphsCheck type=checkbox value=1 checked>
<label for=CPAlgolGlyphsCheck class="annunciator annunciatorLit">ALGOL GLYPHS</label>
</div>
<div id=CPStacker1Full class=annunciator>STACKER 1 FULL</div>
<div id=CPStacker2Full class=annunciator>STACKER 2 FULL</div>
<div id=CPStacker1Div>
<meter id=CPStacker1Bar min=0 max=100 value=0></meter>
<label id=CPStacker1Caption for=CPStacker1Bar>STACKER 1</label>
<iframe id=CPStacker1Frame class=paper scrolling=auto src="./B5500FramePaper.html"></iframe>
</div>
<div id=CPStacker2Div>
<meter id=CPStacker2Bar min=0 max=100 value=0></meter>
<label id=CPStacker2Caption for=CPStacker2Bar>STACKER 2</label>
<iframe id=CPStacker2Frame class=paper scrolling=auto src="./B5500FramePaper.html"></iframe>
</div>
</div>
</body>
</html>