25 lines
669 B
HTML
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>
|