Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion apps/web-dashboard/src/pages/Signup.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useEffect, useMemo, useState } from 'react';
import toast from 'react-hot-toast';
import { Eye, EyeOff, Github, Lock, Mail, UserRound } from 'lucide-react';
import { Eye, EyeOff, Github, Home, Lock, Mail, UserRound } from 'lucide-react';
import { useNavigate } from 'react-router-dom';

import AuthShell from '../components/AuthShell';
Expand Down Expand Up @@ -104,6 +104,15 @@ function Signup() {
alternateTo="/login"
>
<form className="auth-form" onSubmit={handleSubmit}>
<button
type="button"
className="btn btn-outline auth-submit auth-back-button"
onClick={() => navigate('/')}
>
<Home size={17} />
Back to Home
</button>

<button
type="button"
className="btn btn-primary auth-submit"
Expand Down
Loading