18 lines
506 B
HTML
18 lines
506 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
<body>
|
|
<!-- 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">
|
|
<em id="status"></em>
|
|
<strong id="error"></strong>
|
|
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html>
|