Skip to main content

React: Remember me functionality with React


Want to know how can you easily integrate Remember me on your website just follow the steps below and I am sure you will find this pretty easy. There is no rocket science to crack it you just need basic code knowledge only.

Step 1: Add the react-cookie in your project  
npm install react-cookie
Step2: Add the following code in index.js
  import { CookiesProvider } from "react-cookie";
  ReactDOM.render(
      <CookiesProvider>
          <App />
      </CookiesProvider>,
      document.getElementById('root')
  ); 
        
Step3: Add the following code in your component
  import React, { useState } from 'react';
  import { useCookies } from 'react-cookie';
  const App = () => {
  const [name, setName] = useState('');
  const [pwd, setPwd] = useState('');
  const [cookies, setCookie] = useCookies(['user']); 
  const handle = () => {   
      setCookie('Name', name, { path: '/' });
      setCookie('Password', pwd, { path: '/' }); 
  }; 
  return (   
      <div className="App">
          <h1>Name of the user:</h1>
          <input
              placeholder="name"
              value={name}
              onChange={(e) => setName(e.target.value)}
          />
          <h1>Password of the user:</h1>
          <input
              type="password"
              placeholder="name"
              value={name}
              onChange={(e) => setPwd(e.target.value)}
          />
          <div>
               <button onClick={handle}>Set Cookie</button>
          </div>
       </div>
    );
  };
  export default App;
  
Step4: Retrieving cookies
  Name: <p>{cookies.Name}</p>
  Password: <p>{cookies.Password}</p>

Comments

Popular posts from this blog

Prompt Engineering for Web Developers: Work Smarter with AI 🚀

   AI is changing the way web applications are built. From generating components and writing tests to planning projects and reviewing code, developers can now use natural language prompts to accelerate development. This approach, often called Vibe Coding, allows developers to describe what they want and let AI generate the solution. The secret to getting quality results is Prompt Engineering : the practice of writing better prompts. 📌 The RTCF Framework A simple framework for creating effective prompts is RTCF : Role → Who should AI act as? Task → What needs to be done? Context → Why is it needed? Format → How should the output look? ❌ Weak Prompt Make me a learning app. ✅ Strong Prompt Role: Senior React Developer Task: Build a React Learning Planner Context: Users need to track learning resources through stages Format: React, Tailwind CSS, drag-and-drop, modern UI, no TypeScript Providing clear instructions dramatically improves AI o...

C: 10. Array

 An array is defined as the collection of similar type of data items stored at contiguous memory locations. For example, if we want to store the marks of a student in 6 subjects, then we don't need to define different variables for the marks in the different subject. Instead of that, we can define an array which can store the marks in each subject at the contiguous memory locations. An array index starts with 0. Syntax:- data_type array_name[array_size];   int marks[5];     Example:- #include<stdio.h>   int main(){       int i=0;     int marks[5];//declaration of array        marks[0]=80;//initialization of array     marks[1]=60;     marks[2]=70;     marks[3]=85;     marks[4]=75;     //traversal of array     for(i=0;i<5;i++){       printf("%d \n",marks[i]);   ...

JS: Cheatsheet

   Datatypes Difference Between Var, Let and Const Functions and its types Asynchronous operations in JS