mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 10:53:17 +00:00
64 lines
1.9 KiB
HTML
64 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Tactility Dashboard</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
max-width: 800px;
|
|
margin: 20px auto;
|
|
padding: 20px;
|
|
background-color: #f5f5f5;
|
|
}
|
|
h1 {
|
|
color: #333;
|
|
text-align: center;
|
|
}
|
|
.placeholder {
|
|
background: white;
|
|
padding: 40px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
text-align: center;
|
|
margin: 20px 0;
|
|
}
|
|
.placeholder h2 {
|
|
color: #666;
|
|
}
|
|
.placeholder p {
|
|
color: #666;
|
|
line-height: 1.6;
|
|
}
|
|
a {
|
|
color: #007bff;
|
|
text-decoration: none;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Tactility Default Dashboard</h1>
|
|
|
|
<div class="placeholder">
|
|
<h2>Version 0 - Default Placeholder</h2>
|
|
<p>This is the default dashboard bundled with firmware.</p>
|
|
<p>To customize this interface:</p>
|
|
<ol style="text-align: left; display: inline-block;">
|
|
<li>Create your custom dashboard HTML/CSS/JS files</li>
|
|
<li>Add them to <code>/sdcard/tactility/webserver/</code></li>
|
|
<li>Create <code>version.json</code> with <code>{"version": 1}</code> or higher</li>
|
|
<li>Reboot or click "Sync Assets" on the <a href="/">Core Interface</a></li>
|
|
</ol>
|
|
<p><strong>Your custom assets will automatically replace this page!</strong></p>
|
|
</div>
|
|
|
|
<div class="placeholder">
|
|
<p><a href="/">← Back to Core Interface</a></p>
|
|
</div>
|
|
</body>
|
|
</html>
|