niledatabase
Version:
Command line interface for Nile databases
58 lines • 1.66 kB
HTML
<html>
<head>
<title>Nile CLI Authentication</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #000000;
color: #ffffff;
}
.container {
text-align: center;
padding: 3rem;
background: rgba(255, 255, 255, 0.05);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.1);
max-width: 400px;
width: 90%;
}
.logo {
margin-bottom: 1.5rem;
}
.logo img {
width: 80px;
height: 80px;
}
h1 {
font-size: 24px;
font-weight: 400;
margin-bottom: 1.5rem;
color: #ffffff;
}
p {
color: rgba(255, 255, 255, 0.7);
line-height: 1.5;
margin: 0.5rem 0;
font-size: 16px;
}
</style>
</head>
<body>
<div class="container">
<div class="logo">
<img src="data:image/jpeg;base64,LOGO_BASE64_PLACEHOLDER" alt="Nile Logo" />
</div>
<h1>Authentication Successful</h1>
<p>You have successfully authenticated with Nile CLI.</p>
<p>You can close this window and return to your terminal.</p>
</div>
</body>
</html>