Looking for help loading user specific information:

Thanks in advance for the help! Here is essentially what I’m trying to do: a customer logs on, and there is a form they can use to request quotes. I’m wanting to display these quotes in a box (with pdf links) to the specific user when they log on (on their home page). I’m assuming that the best way to do this is to load the PDF files into a database, I’m just not exactly sure how to go about displaying the PDF links to the specific customer that is logged on, thanks again for any help!

If you’re trying to do this without coding, maybe someone else can assist.

If you can code, then it’s straightforward.
Make a collection that includes the user’s ID, email, and PDF files or URLs for the PDFs.

https://www.wix.com/corvid/reference/wix-users.html#currentUser

Examples

Get the current user’s information

import wixUsers from 'wix-users';

// ...

let user = wixUsers.currentUser;

let userId = user.id;           // "r5cme-6fem-485j-djre-4844c49"
let isLoggedIn = user.loggedIn; // true

user.getEmail()
  .then( (email) => {
    let userEmail = email;      // "user@something.com"
  } );