Files
SocialMediaApp/index.html
2026-01-28 20:11:07 +11:00

81 lines
3.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Social App</title>
<meta name="description" content="Connect with friends in style.">
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<!-- App Container -->
<main class="login-container fade-in">
<!-- Background Orbs for Vibe -->
<div class="orb orb-1"></div>
<div class="orb orb-2"></div>
<div class="login-card">
<div class="brand-section">
<div class="logo-icon">S</div>
<h1>Welcome Back</h1>
<p>Enter your details below</p>
</div>
<form class="login-form" onsubmit="event.preventDefault()">
<div class="input-group">
<input type="email" id="email" required placeholder=" " autocomplete="email">
<label for="email">Email Address</label>
</div>
<div class="input-group">
<input type="password" id="password" required placeholder=" " autocomplete="current-password">
<label for="password">Password</label>
</div>
<a href="#" class="forgot-pass">Forgot Password?</a>
<button type="submit" class="btn-primary">
<span>Sign In</span>
<div class="btn-glow"></div>
</button>
</form>
<div class="divider">
<span>Or continue with</span>
</div>
<div class="social-login">
<button class="btn-social" aria-label="Login with Google">
<svg viewBox="0 0 24 24" class="social-icon">
<path
d="M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z"
fill="#4285F4" />
<path
d="M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z"
fill="#34A853" />
<path
d="M5.84 14.11c-.22-.66-.35-1.36-.35-2.11s.13-1.45.35-2.11V7.05H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.95l3.66-2.84z"
fill="#FBBC05" />
<path
d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.05l3.66 2.84c.87-2.6 3.3-4.51 6.16-4.51z"
fill="#EA4335" />
</svg>
</button>
<button class="btn-social" aria-label="Login with Apple">
<svg viewBox="0 0 24 24" class="social-icon">
<path
d="M17.05 20.28c-.98 1.5-2.53 3.51-4.22 3.48-1.63-.04-2.16-1.1-4.04-1.1-1.9 0-2.48 1.07-4.06 1.1-2.91.16-6.49-5.46-5.23-10.74 1.12-4.5 5.5-5.27 6.42-5.18 1.6.15 2.86 1.1 3.75 1.1.9 0 2.25-1.07 4.1-1.03 2.53.11 4.19 1.55 4.97 2.76-4.26 2.15-3.4 8.74 1.41 10.39-.42.94-.8 1.76-1.45 2.72-.65.98-1.28 1.7-1.65 2.5zm-5-17.76c1.23-1.48 2.06-3.52 1.83-5.52-1.78.07-3.92 1.19-5.18 2.65-1.12 1.25-2.09 3.29-1.83 5.32 1.95.15 3.95-1 5.18-2.45z"
fill="currentColor" />
</svg>
</button>
</div>
<p class="signup-link">Don't have an account? <a href="#">Create One</a></p>
</div>
</main>
<script src="script.js"></script>
</body>
</html>