import { useState } from 'react' import PropTypes from 'prop-types' import RegisterForm from './register-form' function UserActivateRegister() { const [emails, setEmails] = useState([]) const [failedEmails, setFailedEmails] = useState([]) const [registerError, setRegisterError] = useState(false) const [registrationSuccess, setRegistrationSuccess] = useState(false) return (
Sorry, an error occured, failed to register these emails.
{failedEmails.map(email => ({email}
))}We've sent out welcome emails to the registered users.
You can also manually send them URLs below to allow them to reset their password and log in for the first time.
(Password reset tokens will expire after one week and the user will need registering again).
Set Password Url | |
---|---|
{user.email} | {user.setNewPasswordUrl} |