Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
Update frontend/src/pages/Login.jsx
Browse files- frontend/src/pages/Login.jsx +23 -13
frontend/src/pages/Login.jsx
CHANGED
|
@@ -196,21 +196,31 @@ export const Login = () => {
|
|
| 196 |
</button>
|
| 197 |
</form>
|
| 198 |
|
| 199 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 200 |
<p className="text-sm text-slate-500">
|
| 201 |
-
Don't have an account?
|
| 202 |
-
<Link className="text-blue-600 hover:text-blue-700 hover:underline
|
| 203 |
</p>
|
| 204 |
-
<div className="flex items-center justify-center gap-2 pt-2 border-t border-slate-100/60">
|
| 205 |
-
<button
|
| 206 |
-
type="button"
|
| 207 |
-
onClick={() => setLegalModal('terms')}
|
| 208 |
-
className="flex items-center gap-1.5 text-xs text-slate-500 hover:text-blue-600 font-medium transition-colors bg-transparent border-0 cursor-pointer p-0"
|
| 209 |
-
>
|
| 210 |
-
<span className="material-symbols-outlined text-[18px] text-blue-600">gavel</span>
|
| 211 |
-
Legal Policies
|
| 212 |
-
</button>
|
| 213 |
-
</div>
|
| 214 |
</div>
|
| 215 |
</main>
|
| 216 |
|
|
|
|
| 196 |
</button>
|
| 197 |
</form>
|
| 198 |
|
| 199 |
+
<p className="text-xs text-slate-500 text-center mt-5 leading-relaxed relative z-10">
|
| 200 |
+
By signing in, you agree to our{' '}
|
| 201 |
+
<button
|
| 202 |
+
type="button"
|
| 203 |
+
onClick={() => setLegalModal('terms')}
|
| 204 |
+
className="text-blue-600 hover:underline font-medium bg-transparent border-0 cursor-pointer p-0"
|
| 205 |
+
>
|
| 206 |
+
Terms of Service
|
| 207 |
+
</button>{' '}
|
| 208 |
+
and{' '}
|
| 209 |
+
<button
|
| 210 |
+
type="button"
|
| 211 |
+
onClick={() => setLegalModal('aup')}
|
| 212 |
+
className="text-blue-600 hover:underline font-medium bg-transparent border-0 cursor-pointer p-0"
|
| 213 |
+
>
|
| 214 |
+
Acceptable Use Policy
|
| 215 |
+
</button>
|
| 216 |
+
.
|
| 217 |
+
</p>
|
| 218 |
+
|
| 219 |
+
<div className="mt-6 pt-6 text-center border-t border-slate-100 relative z-10">
|
| 220 |
<p className="text-sm text-slate-500">
|
| 221 |
+
Don't have an account?{' '}
|
| 222 |
+
<Link className="text-blue-600 hover:text-blue-700 hover:underline font-semibold transition-colors ml-1" to="/register">Create an account</Link>
|
| 223 |
</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 224 |
</div>
|
| 225 |
</main>
|
| 226 |
|