ClientTest / pages /auth_page.html
zinoubm's picture
adding vercel conf
606a5bd
raw
history blame
1.36 kB
<html>
<head>
<title>Button Page</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap" rel="stylesheet">
<style>
body {
background-color: #090F1E;
font-family: 'Poppins', sans-serif;
}
.button-wrapper {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
button {
border: none;
margin-right: 10px;
border-radius: 5px;
color: #090F1E;
font-weight: 400;
font-size: 1rem;
}
.integrate {
display: flex;
align-items: center;
}
.skip {
color: #95BDFF;
text-decoration: none;
}
img {
width: 2rem;
}
</style>
</head>
<body>
<div class="button-wrapper">
<div>
<button onclick="location.href='/auth'" class="integrate">
<img src="assets/google_logo.svg"> Integrate Google Cloud
</button>
</div>
<a class="skip" href="/gradio?__theme=dark">skip</a>
</div>
</body>
</html>