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

58 lines
2.0 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>
<div class="input-group hidden" id="confirm-password-group">
<input type="password" id="confirm-password" placeholder=" " autocomplete="new-password">
<label for="confirm-password">Confirm 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>
<!-- Social Login Removed -->
<p class="signup-link">Don't have an account? <a href="#">Create One</a></p>
</div>
</main>
<script src="script.js"></script>
</body>
</html>