19 lines
511 B
HTML
19 lines
511 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
|
|
</head>
|
|
<body>
|
|
<img src="../icons/32.png">
|
|
<h3>Add Category</h3>
|
|
|
|
<p><textarea rows="1" cols="15" id="myTextarea"></textarea></p>
|
|
<p id="demo"></p>
|
|
<p><button type="button" id="addButton">Add</button>
|
|
<button type="button" id="closeButton">Close</button>
|
|
</p>
|
|
<script type="module" src="add_category.js"></script>
|
|
</body>
|
|
</html>
|