mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00

- For same reason, data over 97.6Kb (100000 bytes) may have data loss because of Civetweb has an issue. That's make the webui-protocol-header had incorrect data size so it crashes (over flow) if user access the most significant byte. However, WebUI won't crash now. But we should report this to Civetweb.
41 lines
1.2 KiB
HTML
41 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>WebUI - Second Page (C99)</title>
|
|
<style>
|
|
body {
|
|
font-family: 'Arial', sans-serif;
|
|
color: white;
|
|
background: linear-gradient(to right, #507d91, #1c596f, #022737);
|
|
text-align: center;
|
|
font-size: 18px;
|
|
}
|
|
button, input {
|
|
padding: 10px;
|
|
border-radius: 3px;
|
|
border: 1px solid #ccc;
|
|
box-shadow: 0 3px 5px rgba(0,0,0,0.1);
|
|
transition: 0.2s;
|
|
}
|
|
button {
|
|
background: #3498db;
|
|
color: #fff;
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
}
|
|
h1 { text-shadow: -7px 10px 7px rgb(67 57 57 / 76%); }
|
|
button:hover { background: #c9913d; }
|
|
input:focus { outline: none; border-color: #3498db; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h3 id="title">This is the second page !</h3>
|
|
<br>
|
|
<button id="Exit">Call Exit()</button>
|
|
</body>
|
|
|
|
<!-- Connect this window to the background app -->
|
|
<script src="webui.js"></script>
|
|
</html>
|