remwharead/browser-plugins/webextension/popup.html

18 lines
506 B
HTML
Raw Normal View History

2019-05-20 19:23:16 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
2019-05-24 11:55:22 +02:00
<!-- I did not use a form here because I want to display status and
error messages inside the popup. -->
<label for="tags">Tags, comma separated:</label>
<input type="text" id="tags" autofocus>
<input type="button" id="button" value="Add URI">
2019-05-21 17:11:14 +02:00
<em id="status"></em>
2019-05-21 15:02:10 +02:00
<strong id="error"></strong>
2019-05-20 19:23:16 +02:00
2019-05-24 11:55:22 +02:00
<script src="popup.js"></script>
2019-05-20 19:23:16 +02:00
</body>
</html>