Spaces:
Runtime error
Runtime error
File size: 1,359 Bytes
606a5bd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
<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> |