Files
AuthCentral/web/index.html
Beyhan Oğur 8b1fbdee99 first commit
2026-04-26 21:37:58 +03:00

206 lines
5.9 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GAuth-Central | Identity Provider</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
<style>
:root {
--primary: #6366f1;
--primary-dark: #4f46e5;
--bg: #0f172a;
--card-bg: #1e293b;
--text: #f8fafc;
--text-muted: #94a3b8;
}
body {
margin: 0;
font-family: 'Inter', sans-serif;
background-color: var(--bg);
color: var(--text);
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
overflow: hidden;
}
.container {
text-align: center;
position: relative;
z-index: 10;
}
h1 {
font-size: 3rem;
font-weight: 800;
margin-bottom: 1rem;
background: linear-gradient(135deg, #a5b4fc 0%, #6366f1 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
letter-spacing: -0.05em;
}
p {
font-size: 1.1rem;
color: var(--text-muted);
margin-bottom: 2.5rem;
max-width: 500px;
margin-left: auto;
margin-right: auto;
line-height: 1.6;
}
.btn-group {
display: flex;
gap: 1rem;
justify-content: center;
}
.btn {
padding: 0.8rem 1.5rem;
border-radius: 0.5rem;
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
}
.btn-primary {
background-color: var(--primary);
color: white;
box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.39);
}
.btn-primary:hover {
background-color: var(--primary-dark);
transform: translateY(-2px);
box-shadow: 0 6px 20px 0 rgba(99, 102, 241, 0.23);
}
.btn-secondary {
background-color: var(--card-bg);
color: var(--text);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-secondary:hover {
background-color: #2e3b4e;
transform: translateY(-2px);
}
.features {
margin-top: 4rem;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
}
.feature-card {
background: rgba(30, 41, 59, 0.5);
padding: 1.5rem;
border-radius: 1rem;
border: 1px solid rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
transition: transform 0.3s ease;
}
.feature-card:hover {
transform: translateY(-5px);
border-color: rgba(99, 102, 241, 0.3);
}
.feature-icon {
font-size: 1.5rem;
margin-bottom: 1rem;
display: block;
}
.feature-title {
font-weight: 600;
margin-bottom: 0.5rem;
display: block;
}
.feature-desc {
font-size: 0.9rem;
color: var(--text-muted);
margin: 0;
}
/* Background glow effects */
.glow {
position: absolute;
width: 300px;
height: 300px;
background: var(--primary);
border-radius: 50%;
filter: blur(100px);
opacity: 0.15;
z-index: 0;
pointer-events: none;
}
.glow-1 {
top: -100px;
left: -100px;
}
.glow-2 {
bottom: -100px;
right: -100px;
}
</style>
</head>
<body>
<div class="glow glow-1"></div>
<div class="glow glow-2"></div>
<div class="container">
<h1>GAuth-Central</h1>
<p>A secure, high-performance Identity Provider written in Go. seamless authentication for your distributed
applications.</p>
<div class="btn-group">
<a href="/v1/docs/index.html" class="btn btn-primary">
API Documentation
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
style="margin-left:8px">
<path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path>
<polyline points="15 3 21 3 21 9"></polyline>
<line x1="10" y1="14" x2="21" y2="3"></line>
</svg>
</a>
<a href="https://github.com/go-gorm/gorm" target="_blank" class="btn btn-secondary">GitHub</a>
</div>
<div class="features">
<div class="feature-card">
<span class="feature-icon">🔒</span>
<span class="feature-title">Secure</span>
<p class="feature-desc">JWT based authentication with bcrypt password hashing.</p>
</div>
<div class="feature-card">
<span class="feature-icon"></span>
<span class="feature-title">Fast</span>
<p class="feature-desc">Powered by Gin & Go for blazing fast performance.</p>
</div>
<div class="feature-card">
<span class="feature-icon">🌐</span>
<span class="feature-title">OAuth2</span>
<p class="feature-desc">Seamless integration with Google & GitHub providers.</p>
</div>
</div>
</div>
</body>
</html>