react-easy-register
v2.1.3
Published
<h1><u>react-easy-register</u></h1>
Downloads
81
Readme
react-easy-register
is a simple and customizable registration component for React applications. With this component, you can easily create a registration page with minimal setup.
Installation
You can install the package via npm:
npm install react-easy-register
Using the module react-easy-register
To use the Register component, simply import it and include it in your React component. Here is an example:
import React from 'react';
import Register from 'react-easy-register';
function App() {
return (
<div className="App">
<Register
inputs={['name', 'email', 'password']}
authFields={['name', 'email', 'password']}
uri="https://your-auth-api.com/register"
redirectto="/login"
loginroute="/login"
/>
</div>
);
}
export default App;
License
This project is licensed under the MIT License.
MIT License
Copyright (c) 2024 RohithChowki
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
1. The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
2. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.