Files
Philip Smart d0d7cbfdaa Added testapps
2022-12-03 18:08:54 +00:00

23 lines
728 B
HTML
Executable File
Vendored

<html>
<head>
<meta charset="UTF-8">
<style>
.one{
width: 400px;
height: 200px;
border-width:1px solid #FF0000;
}
</style>
</head>
<body style="width:380px;height:180px; background:#FFF; border:2px solid #C0C0C0">
<p style="position:relative;left:120px;top:50px;width:150px;height:50px;
font-family:arial;color:red;font-size:15px;">Are you sure quit?</p>
<div >
<button style="position:relative; left:80px; top: 70px; width:50px; height:30px; border-radius:5px;"
onclick="console.log('dialog:user=yes');">Exit</button>
<button style="position:relative; left:190px; top: 70px; width:50px;height:30px; border-radius:5px"
onclick="console.log('dialog:user=no');">No</button>
</div>
</body>
</html>