Spaces:
Running
Running
File size: 6,453 Bytes
4fb0c68 |
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 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 |
import { useState } from 'react';
import { useNavigate } from 'react-router-dom';
import axios from 'axios';
import '../styles/Register.css';
import { register } from '../services/api';
const API_URL = import.meta.env.VITE_API_URL;
const Register = () => {
const [formData, setFormData] = useState({
first_name: '',
surname: '',
email: '',
phone: '',
country: '',
address: '',
password: '',
confirm_password: ''
});
const [error, setError] = useState(null);
const navigate = useNavigate();
const handleChange = (e) => {
setFormData({ ...formData, [e.target.name]: e.target.value });
};
const handleSubmit = async (e) => {
e.preventDefault();
const { first_name, surname, email, phone, country, address, password, confirm_password } = formData;
if (password !== confirm_password) {
setError('Passwords do not match');
return;
}
try {
console.log('Form Data:', formData);
const response = await register(first_name, surname, email, phone, country, address, password);
// const response = await axios.post(`${API_URL}/api/v1/user/`, formData);
console.log('Response:', response.data);
navigate('/login');
} catch (error) {
console.error('Registration failed', error);
if (error.response && error.response.status === 400) {
setError(error.response.data.detail || 'Registration failed');
} else {
setError('An unexpected error occurred');
}
}
};
return (
<div className="min-h-screen flex items-center justify-center bg-gradient-to-r from-purple-400 via-pink-500 to-blue-500">
<div className="flex flex-col md:flex-row bg-white rounded-lg shadow-md overflow-hidden w-full max-w-7xl">
<div className="md:w-1/2 flex justify-center items-center bg-gray-100">
<img src="/public/HiDigiH.jpg" alt="HiDigi Logo" style={{ height: '250px', width: '250px' }} />
</div>
<div className="md:w-1/2 p-8">
<h2 className="text-2xl font-bold mb-6 text-center">Sign Up</h2>
<form onSubmit={handleSubmit}>
{error && <div className="mb-4 text-center text-red-500">{error}</div>}
<div className="grid grid-cols-2 gap-4">
<div className="mb-4">
<label className="block text-gray-700 mb-2">First Name</label>
<input
type="text"
name="first_name"
value={formData.first_name}
onChange={handleChange}
className="w-full p-3 border border-gray-300 rounded"
placeholder="First Name"
required
/>
</div>
<div className="mb-4">
<label className="block text-gray-700 mb-2">Surname</label>
<input
type="text"
name="surname"
value={formData.surname}
onChange={handleChange}
className="w-full p-3 border border-gray-300 rounded"
placeholder="Surname"
required
/>
</div>
<div className="mb-4">
<label className="block text-gray-700 mb-2">Phone Number</label>
<input
type="text"
name="phone"
value={formData.phone}
onChange={handleChange}
className="w-full p-3 border border-gray-300 rounded"
placeholder="Phone Number"
required
/>
</div>
<div className="mb-4">
<label className="block text-gray-700 mb-2">Country</label>
<input
type="text"
name="country"
value={formData.country}
onChange={handleChange}
className="w-full p-3 border border-gray-300 rounded"
placeholder="Country"
required
/>
</div>
<div className="mb-4">
<label className="block text-gray-700 mb-2">Address</label>
<input
type="text"
name="address"
value={formData.address}
onChange={handleChange}
className="w-full p-3 border border-gray-300 rounded"
placeholder="Address"
required
/>
</div>
<div className="mb-4">
<label className="block text-gray-700 mb-2">E-Mail</label>
<input
type="email"
name="email"
value={formData.email}
onChange={handleChange}
className="w-full p-3 border border-gray-300 rounded"
placeholder="E-Mail"
required
/>
</div>
<div className="mb-4">
<label className="block text-gray-700 mb-2">Password</label>
<input
type="password"
name="password"
value={formData.password}
onChange={handleChange}
className="w-full p-3 border border-gray-300 rounded"
placeholder="Password"
required
/>
</div>
<div className="mb-4">
<label className="block text-gray-700 mb-2">Confirm Password</label>
<input
type="password"
name="confirm_password"
value={formData.confirm_password}
onChange={handleChange}
className="w-full p-3 border border-gray-300 rounded"
placeholder="Confirm Password"
required
/>
</div>
</div>
<button type="submit" className="w-full bg-blue-500 text-white py-3 px-4 rounded mt-4 hover:bg-blue-600">Register</button>
</form>
<div className="text-center text-gray-500 text-sm mt-6">
Already have an account? <a href="/login" className="text-blue-500 hover:underline">Sign in</a>
</div>
</div>
</div>
</div>
);
};
export default Register;
|