Spaces:
Sleeping
Sleeping
File size: 4,598 Bytes
24c01fa |
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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Insight - Sign Up & Login</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(to right, #6a11cb, #2575fc);
color: #fff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
width: 90%;
max-width: 800px;
background: #ffffff;
color: #333;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
display: flex;
overflow: hidden;
}
.form-container {
flex: 1;
padding: 40px 20px;
}
.form-container h2 {
margin-bottom: 20px;
text-align: center;
color: #2575fc;
}
.form-container form {
display: flex;
flex-direction: column;
}
.form-container form label {
margin-bottom: 8px;
font-size: 14px;
color: #666;
}
.form-container form input {
padding: 10px;
margin-bottom: 20px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 16px;
}
.form-container form button {
background: #2575fc;
color: #fff;
padding: 12px;
border: none;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
transition: background 0.3s;
}
.form-container form button:hover {
background: #6a11cb;
}
.switch-container {
flex: 0.5;
background: #2575fc;
color: #fff;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 40px 20px;
}
.switch-container h2 {
font-size: 24px;
margin-bottom: 20px;
}
.switch-container p {
margin-bottom: 20px;
font-size: 14px;
text-align: center;
}
.switch-container button {
background: #fff;
color: #2575fc;
padding: 10px 20px;
border: none;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
transition: background 0.3s;
}
.switch-container button:hover {
background: #f1f1f1;
}
</style>
</head>
<body>
<div class="container">
<!-- Login Form -->
<div class="form-container">
<h2>Login to Image Insight</h2>
<form>
<label for="login-email">Email</label>
<input type="email" id="login-email" placeholder="Enter your email" required>
<label for="login-password">Password</label>
<input type="password" id="login-password" placeholder="Enter your password" required>
<button type="submit">Login</button>
</form>
</div>
<!-- Switch Section -->
<div class="switch-container">
<h2>New Here?</h2>
<p>Sign up to use our Image Captioning and VQA features.</p>
<button onclick="switchToSignUp()">Sign Up</button>
</div>
<!-- Sign Up Form -->
<div class="form-container" style="display: none;">
<h2>Sign Up for Image Insight</h2>
<form>
<label for="signup-name">Full Name</label>
<input type="text" id="signup-name" placeholder="Enter your name" required>
<label for="signup-email">Email</label>
<input type="email" id="signup-email" placeholder="Enter your email" required>
<label for="signup-password">Password</label>
<input type="password" id="signup-password" placeholder="Enter your password" required>
<button type="submit">Sign Up</button>
</form>
</div>
</div>
<script>
function switchToSignUp() {
document.querySelectorAll('.form-container')[0].style.display = 'none';
document.querySelectorAll('.form-container')[1].style.display = 'block';
}
</script>
</body>
</html>
|