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.
OneAuth/new/ui/page/index.html

55 lines
1.1 KiB
HTML

7 months ago
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Index2</title>
</head>
<style>
/* 添加样式以美化导航按钮 */
.nav-container {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}
.nav-button {
padding: 10px 20px;
background-color: #007bff;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.nav-button:hover {
background-color: #0056b3;
}
</style>
<body class="h-full w-full grid place-content-center">
<!-- 导航容器 -->
<div class="nav-container">
<!-- 导航按钮 -->
<a class="nav-button" :href="navLinks.dsr1">Go 2to /dsr1</a>
<a class="nav-button" :href="navLinks.latest">Go to /latest</a>
<a class="nav-button" :href="navLinks.qwq">Go to2 /qwq</a>
<a class="nav-button" :href="navLinks.dsr132b">Go to /dsr132b</a>
</div>
</body>
<script setup>
// 定义导航链接
console.log($env.user)
navLinks = {
dsr1: "/dsr1",
latest: "/latest",
qwq: "/qwq",
dsr132b: "/dsr132b"
};
</script>
</html>