This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, {useState} from 'react'; | |
import {loadStripe} from '@stripe/stripe-js'; | |
import { | |
PaymentElement, | |
Elements, | |
useStripe, | |
useElements, | |
} from '@stripe/react-stripe-js'; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import fs from 'fs'; | |
import nodemailer from 'nodemailer'; | |
async function sendEmail(data) { | |
try { | |
//destructure | |
const { dataToReplace, emailSubject, recipientEmail } = data; | |
// Replace with the actual path to your template file | |
const templatePath = `./templates/loginTemplate`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//SESSION STORAGE | |
//Temporary saves data to the browser. Data saved is lost when the browser closes. | |
//syntax | |
//sessionStorage.setItem("key", "value") | |
//save an item | |
sessionStorage.setItem('name', 'simon'); | |
//save multiple items in an object | |
sessionStorage.setItem('data', JSON.stringify({ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//LOCAL STORAGE | |
//Saves data permanently to the user's browser | |
//syntax | |
//localStorage.setItem("key", "value") | |
//save an item | |
localStorage.setItem('name', 'simon'); | |
//save multiple items in an object | |
localStorage.setItem('data', JSON.stringify({ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//reset route | |
app.get('/reset', async (req, res) => { | |
try { | |
//check for email and hash in query parameter | |
if (req.query && req.query.email && req.query.hash) { | |
//find user with suh email address | |
const user = await User.findOne({ email: req.query.email }) | |
//check if user object is not empty | |
if (user) { | |
//now check if hash is valid |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app.post('/reset', async (req, res) => { | |
try{ | |
//find a document with such email address | |
const user = await User.findOne({email : req.body.email}) | |
//check if user object is not empty | |
if(user){ | |
//generate hash | |
const hash = new User(user).generatePasswordResetHash() | |
//generate a password reset link | |
const resetLink = `http://localhost:5000/reset?email=${user.email}?&hash=${hash}` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Enter New Password</title> | |
<!-- Google Fonts --> | |
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Reset Your Password</title> | |
<!-- Google Fonts --> | |
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//generate password reset hash | |
userSchema.methods.generatePasswordResetHash = function(){ | |
//create hash object, | |
//then create a sha512 hash of the user's hashed password | |
//and then return hash | |
const resetHash = crypto.createHash('sha512').update(this.hash).digest('hex') | |
return resetHash; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//generate password reset hash | |
userSchema.methods.generatePasswordResetHash = function(){ | |
//create hash object, then create a sha512 hash of the user's current password | |
//and return hash | |
const resetHash = crypto.createHash('sha512').update(this.password).digest('hex') | |
return resetHash; | |
} | |
//verify password reset hash | |
userSchema.methods.verifyPasswordResetHash = function(resetHash = undefined){ |
NewerOlder