29 lines
1.1 KiB
HTML
29 lines
1.1 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Firefox Focus Controls</title>
|
|
<link rel="stylesheet" href="theme.css">
|
|
<link rel="stylesheet" href="popup.css">
|
|
</head>
|
|
<body>
|
|
<main class="popup-shell">
|
|
<form id="popup-url-form" class="popup-url-form">
|
|
<label class="sr-only" for="popup-url-input">Enter a URL or search</label>
|
|
<input id="popup-url-input" type="text" placeholder="URL or search">
|
|
</form>
|
|
|
|
<div class="control-grid">
|
|
<button data-action="back" type="button">Back</button>
|
|
<button data-action="forward" type="button">Forward</button>
|
|
<button data-action="refresh" type="button">Refresh</button>
|
|
<button data-action="home" type="button">Home</button>
|
|
<button data-action="trash" type="button" class="danger">Trash</button>
|
|
<button data-action="settings" type="button">Settings</button>
|
|
</div>
|
|
</main>
|
|
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html>
|