feat(auth): add registration page

This commit is contained in:
shafin-r
2026-03-09 15:05:09 +06:00
parent 8dbadae58c
commit b5edb3554f
6 changed files with 523 additions and 3 deletions

View File

@ -175,6 +175,16 @@ const STYLES = `
font-family: 'Nunito Sans', sans-serif;
font-size: 0.75rem; font-weight: 600; color: #9ca3af;
}
.rg-footer {
text-align: center;
font-family: 'Nunito Sans', sans-serif;
font-size: 0.78rem; font-weight: 600; color: #9ca3af;
}
.rg-link {
color: #a855f7; font-weight: 800; text-decoration: none;
transition: color 0.2s ease;
}
.rg-link:hover { color: #7c3aed; }
`;
export const Login = () => {
@ -332,6 +342,12 @@ export const Login = () => {
<p className="lg-footer">
By signing in you agree to Edbridge's Terms & Privacy Policy.
</p>
<p className="rg-footer">
Don't have an account?{" "}
<a href="/register" className="rg-link">
Sign up
</a>
</p>
</div>
</div>
);