Implement MessageBox UI: Add styles and structure for message box, including buttons and event handling

This commit is contained in:
Zero
2026-06-14 15:57:59 +02:00
parent ec221ab410
commit 4f5eca9194
6 changed files with 406 additions and 181 deletions

View File

@@ -0,0 +1,20 @@
<rml>
<head>
<title>Message Box</title>
<link type="text/rcss" href="MessageBox.rcss"/>
</head>
<body>
<div id="message_box">
<p id="title"></p>
<div id="text_container">
<p id="description"></p>
</div>
<div id="buttons">
<button id="button0">Button 0</button>
<button id="button1">Button 1</button>
<button id="button2">Button 2</button>
<button id="button3">Button 3</button>
</div>
</div>
</body>
</rml>