1
0
mirror of https://github.com/pkimpel/retro-b5500.git synced 2026-01-12 00:42:59 +00:00
pkimpel.retro-b5500/webUI/B5500CardReaderKeyin.html

45 lines
2.0 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>retro-B5500 Card Reader Keyin</title>
<!--
/***********************************************************************
* retro-b5500/emulator B5500CardReaderKeyin.html
************************************************************************
* Copyright (c) 2016, Nigel Williams and Paul Kimpel.
* Licensed under the MIT License, see
* http://www.opensource.org/licenses/mit-license.php
************************************************************************
* B5500 emulator card reader peripheral keyin window.
*
* Defines a pop-up window with a text area from which a short card deck can
* be quickly keyed in and inserted at the end of the reader's "input stacker"
* buffer.
*
************************************************************************
* 2016-05-07 P.Kimpel
* Original version, from B5500System.Config.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=keyinStyleSheet rel=stylesheet type="text/css" href="B5500CardReader.css">
</head>
<body id=CRKeyinBody class=deviceBody>
<div id=CRKeyinDiv class=devicePanel>
Enter card images and click <b>Insert</b> to add the images to the end of the input stacker:
<textarea id=CRKeyinText></textarea>
<button id=CRKeyinControlDeckBtn class="whiteButton whiteLit">?CONTROL/DECK</button>
<button id=CRKeyinEndControlBtn class="whiteButton whiteLit">?END CONTROL</button>
<button id=CRKeyinEndCardBtn class="whiteButton whiteLit">?END</button>
<button id=CRKeyinCancelBtn class="redButton">Cancel</button>
<button id=CRKeyinInsertBtn class="greenButton">Insert</button>
</div>
</body>
</html>