mirror of https://github.com/veypi/OneAuth.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
637 B
HTML
36 lines
637 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta name="description" content="Public Layout">
|
|
<title>VBase</title>
|
|
<style>
|
|
.public-container {
|
|
display: flex;
|
|
height: 100vh;
|
|
width: 100vw;
|
|
background-color: var(--bg-color-secondary);
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.content-box {
|
|
width: 100%;
|
|
max-width: 400px;
|
|
padding: 20px;
|
|
background: #fff;
|
|
border-radius: var(--radius-lg);
|
|
box-shadow: var(--shadow-lg);
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="public-container">
|
|
<vslot class="content-box">
|
|
</vslot>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|