element-web/src/vector/theme_widget/index.html
Michael Telatynski 66bd562c21 stash tweaks to the test widgets
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
2020-09-28 12:28:59 +01:00

25 lines
669 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Theme Widget</title>
</head>
<body class="client-element-web">
<h1>Example Theme Widget</h1>
<div>
<h2>Button Decorations</h2>
<button type="button" class="primary">Primary</button>
<button type="button" class="danger">Danger</button>
<button type="button" class="cancel">Cancel</button>
</div>
<div>
<h2>Actual Dialog Controls (closes the dialog)</h2>
<button type="button" id="closeButton">Close</button>
</div>
<div>
<h2>Metadata</h2>
<p id="question"><!-- populated with js --></p>
<p id="button"><!-- populated with js --></p>
</div>
</body>
</html>