sdp / static /login.html
drix60's picture
update code
c6e7540
Raw
History Blame Contribute Delete
547 Bytes
<!DOCTYPE html>
<html data-bs-theme="dark">
<head>
<title>Login</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
min-height: 100vh;
background-color: #121212;
}
.top-left {
position: absolute;
top: 24px;
left: 24px;
}
</style>
</head>
<body>
<div class="top-left">
<a href="/login" class="btn btn-primary btn-lg">Login</a>
</div>
</body>
</html>