32 lines
857 B
HTML
32 lines
857 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>ThunderAI - Manage Prompts</title>
|
|
<link rel="stylesheet" href="mzta-custom-prompts.css">
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<h1>Manage Prompts</h1>
|
|
<p>Manage your custom prompts.</p>
|
|
</div>
|
|
<div id="all_prompts">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th class="sort" data-sort="id">ID</th>
|
|
<th class="sort" data-sort="name">Name</th>
|
|
<th class="sort" data-sort="text">Text</th>
|
|
<th>Properties</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="list">
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<script src="list.js"></script>
|
|
<script src="mzta-custom-prompts.js" type="module"></script>
|
|
<script src="../js/mzta-i18n.js"></script>
|
|
</body>
|
|
</html>
|
|
|