103 lines
3.1 KiB
HTML
103 lines
3.1 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Sample - Public Demo</title>
|
|
<style>
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
body {
|
|
font-family:
|
|
system-ui,
|
|
-apple-system,
|
|
sans-serif;
|
|
background: linear-gradient(135deg, #1e3a5f 0%, #0d1b2a 100%);
|
|
color: #e5e5e5;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.container {
|
|
text-align: center;
|
|
padding: 2rem;
|
|
}
|
|
h1 {
|
|
font-size: 3rem;
|
|
margin-bottom: 1rem;
|
|
background: linear-gradient(135deg, #3a86ff, #8338ec);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
p {
|
|
font-size: 1.2rem;
|
|
color: #a3a3a3;
|
|
margin-bottom: 2rem;
|
|
}
|
|
.status {
|
|
display: inline-block;
|
|
padding: 0.5rem 1rem;
|
|
background: rgba(58, 134, 255, 0.2);
|
|
border: 1px solid #3a86ff;
|
|
border-radius: 4px;
|
|
color: #3a86ff;
|
|
font-size: 0.9rem;
|
|
}
|
|
.info {
|
|
margin-top: 3rem;
|
|
padding: 1.5rem;
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border-radius: 8px;
|
|
max-width: 400px;
|
|
}
|
|
.info h3 {
|
|
color: #8338ec;
|
|
margin-bottom: 1rem;
|
|
}
|
|
.info ul {
|
|
list-style: none;
|
|
text-align: left;
|
|
}
|
|
.info li {
|
|
padding: 0.5rem 0;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
|
}
|
|
.info li:last-child {
|
|
border-bottom: none;
|
|
}
|
|
a {
|
|
color: #3a86ff;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Sample</h1>
|
|
<p>Public demo - open to any Gmail account</p>
|
|
<span class="status">Public Demo</span>
|
|
|
|
<div class="info">
|
|
<h3>Soleprint Managed Room</h3>
|
|
<ul>
|
|
<li>
|
|
With sidebar:
|
|
<a href="https://sample.spr.mcrn.ar"
|
|
>sample.spr.mcrn.ar</a
|
|
>
|
|
</li>
|
|
<li>
|
|
Standalone:
|
|
<a href="https://sample.mcrn.ar">sample.mcrn.ar</a>
|
|
</li>
|
|
<li>Login with any Google account</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|