improvement(auth): updated email template for auth, general login improvements with pw validation and better error handling

This commit is contained in:
Waleed Latif
2025-03-22 15:43:54 -07:00
parent 0f94d83b27
commit 85e4472717

View File

@@ -210,8 +210,8 @@ export default function SignupPage({
<form onSubmit={onSubmit}>
<div className="space-y-4">
<div className="space-y-2">
<Label htmlFor="name">Name</Label>
<Input id="name" name="name" type="text" required />
<Label htmlFor="name">Full Name</Label>
<Input id="name" name="name" type="text" placeholder="Alan Turing" required />
</div>
<div className="space-y-2">
<Label htmlFor="email">Email</Label>
@@ -231,6 +231,7 @@ export default function SignupPage({
name="password"
type={showPassword ? 'text' : 'password'}
required
placeholder="Enter your password"
value={password}
onChange={handlePasswordChange}
/>