blob: 768afd5d1244ebb746401385a9f1be1afdfc85b5 [file] [log] [blame]
<!-- Copyright 2017 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file. -->
<!DOCTYPE html>
<html>
<head>
<title>Switch Access Options</title>
<link href="options.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>Switch Access Options</h1>
<h2>Auto-Scan</h2>
<div>
<label>
<input id="enableAutoScan" type="checkbox">
Enable auto-scan
</label>
</div>
<div class="container">
<!-- TODO(elichtenberg) i18n for pref ids -->
<label id="autoScanTimeLabel">
<span>Set auto-scan time in seconds:</span>
<input id="autoScanTime" type="number" min=".05" step=".05" value="1">
</label>
</div>
<h2>Keyboard Mapping</h2>
<div id="keyboardMappingDiv" class="container">
<label>
<span>Select: </span>
<input id="select" type="text" maxlength="1">
</label>
<label>
<span>Next: </span>
<input id="next" type="text" maxlength="1">
</label>
<label>
<span>Previous: </span>
<input id="previous" type="text" maxlength="1">
</label>
<label>
<span>Menu: </span>
<input id="menu" type="text" maxlength="1">
</label>
</div>
<script type="text/javascript" src="switch_access_constants.js"></script>
<script type="text/javascript" src="options.js"></script>
</body>
</html>