├── .babelrc ├── .dockerignore ├── .env.example ├── .eslintrc ├── .github └── workflows │ ├── cd.yml │ └── ci.yml ├── .gitignore ├── .nvmrc ├── Dockerfile ├── LICENSE.md ├── README.md ├── fly.toml ├── gtag.json ├── next.config.js ├── package.json ├── public ├── fonts │ └── Signerica_Fat.ttf └── images │ ├── favicon.png │ └── meta.png ├── src ├── components │ ├── ActiveLink │ │ └── ActiveLink.js │ ├── Alert │ │ ├── Alert.js │ │ └── images │ │ │ └── close.svg │ ├── ApiDocs │ │ └── ApiDocs.js │ ├── ApiKeys │ │ ├── ApiKeyActionsDropdown.js │ │ ├── ApiKeys.js │ │ └── images │ │ │ ├── key.svg │ │ │ └── more.svg │ ├── Authenticators │ │ ├── AuthenticatorActionsDropdown.js │ │ ├── Authenticators.js │ │ └── images │ │ │ ├── fingerprint.svg │ │ │ └── more.svg │ ├── Avatar │ │ └── Avatar.js │ ├── Browser │ │ ├── Browser.js │ │ ├── TiltView.js │ │ ├── images │ │ │ └── browserLock.svg │ │ ├── nda-template.mock.json │ │ ├── nda.mock.json │ │ └── user.mock.json │ ├── Clickable │ │ ├── Anchor.js │ │ ├── AnchorButton.js │ │ ├── Button.js │ │ └── ButtonAnchor.js │ ├── CreatorInfo │ │ ├── CreatorInfo.js │ │ └── images │ │ │ └── julia.png │ ├── CustomNote │ │ ├── CustomNote.js │ │ └── images │ │ │ ├── heart.svg │ │ │ ├── logo.svg │ │ │ ├── productHuntLogo.png │ │ │ └── yCombinatorLogo.png │ ├── Dashboard │ │ ├── Dashboard.js │ │ ├── NdaActionsDropdown.js │ │ └── images │ │ │ ├── calendar.svg │ │ │ ├── more.svg │ │ │ └── rightArrow.svg │ ├── Dialog │ │ └── SimpleDialog.js │ ├── ErrorMessage │ │ ├── ErrorMessage.js │ │ ├── FieldErrorMessage.js │ │ └── images │ │ │ └── warning.svg │ ├── ErrorView │ │ └── ErrorView.js │ ├── Footer │ │ ├── Footer.js │ │ └── images │ │ │ ├── globe.svg │ │ │ ├── logoWithText.svg │ │ │ ├── monitor.svg │ │ │ ├── moon.svg │ │ │ └── sun.svg │ ├── Head │ │ └── Head.js │ ├── Home │ │ ├── Home.js │ │ └── images │ │ │ └── nda.svg │ ├── Input │ │ ├── ContentEditableInput.js │ │ ├── EmailInput.js │ │ ├── Input.js │ │ ├── PaymentAmountButtonGroup.js │ │ ├── SelectInput.js │ │ ├── StripeInput.js │ │ └── images │ │ │ ├── coffee.png │ │ │ ├── donut.png │ │ │ ├── down.svg │ │ │ ├── pizza.png │ │ │ ├── ramen.png │ │ │ └── salad.png │ ├── LegalPolicy │ │ └── LegalPolicy.js │ ├── LinkedInButton │ │ ├── LinkedInButton.js │ │ └── images │ │ │ └── linkedInLogo.svg │ ├── LogIn │ │ ├── LogIn.js │ │ └── images │ │ │ └── biometrics.svg │ ├── LogoHeader │ │ ├── LogoHeader.js │ │ └── images │ │ │ └── logoWithText.svg │ ├── Match │ │ └── Match.js │ ├── NDA │ │ ├── NDA.js │ │ ├── NDABody.js │ │ ├── NDAComposer.js │ │ ├── getFullNameFromUser.js │ │ └── images │ │ │ └── hide.svg │ ├── OpenSourceBanner │ │ ├── OpenSourceBanner.js │ │ └── images │ │ │ └── githubLogo.svg │ ├── PaymentForm │ │ └── PaymentForm.js │ ├── SampleNda │ │ └── SampleNda.js │ ├── SenderForm │ │ ├── SenderForm.js │ │ └── images │ │ │ └── hide.svg │ ├── SignatureHolder │ │ └── SignatureHolder.js │ ├── SuccessMessage │ │ └── SuccessMessage.js │ ├── Typewriter │ │ └── Typewriter.js │ ├── UserActionBanner │ │ └── UserActionBanner.js │ └── UserActionsDropdown │ │ ├── UserActionsDropdown.js │ │ └── images │ │ └── chevron-down.svg ├── css │ └── nprogress.css ├── db │ ├── loggerClient.js │ ├── sentryBrowserClient.js │ └── sentryNodeClient.js ├── langs │ ├── en.json │ ├── es.json │ └── zh.json ├── lib │ ├── cookies.js │ ├── localStorage.js │ ├── robots.js │ ├── sessionStorage.js │ ├── sitemap.js │ ├── useLocale.js │ ├── useTheme.js │ └── useTypewriter.js ├── middleware │ └── validateSentryRequest.js ├── pages │ ├── _app.js │ ├── _document.js │ ├── _error.js │ ├── dashboard │ │ └── [dashboardType].js │ ├── dev │ │ ├── docs.js │ │ └── keys.js │ ├── index.js │ ├── login.js │ ├── nda │ │ ├── [ndaId].js │ │ ├── compose.js │ │ ├── new.js │ │ ├── pay.js │ │ └── sent │ │ │ └── [ndaId].js │ ├── privacy.js │ ├── sample │ │ └── [...slug].js │ ├── sessions │ │ └── linkedin │ │ │ └── callback.js │ ├── settings │ │ └── authenticators.js │ ├── terms.js │ └── ueta-esign.js ├── queries │ ├── useApiKeysQuery.js │ ├── useAuthenticatorsQuery.js │ ├── useNdaQuery.js │ ├── useNdaTemplateOptionsQuery.js │ ├── useNdaTemplateQuery.js │ ├── useNdasQuery.js │ └── useSessionQuery.js ├── server.js ├── services │ └── NdaifyService.js ├── util.js └── utils │ ├── __tests__ │ ├── createXForwardedFor.test.js │ └── getEmailSuggestions.test.js │ ├── createXForwardedFor.js │ ├── enhanceOpenApiSpec.js │ ├── fillInNdaBlanks.js │ ├── getEmailSuggestions.js │ ├── getSystemLocale.js │ ├── getTemplateIdParts.js │ ├── getUVPA.js │ ├── nowISO8601.js │ ├── parseFullName.js │ └── parseLocaleParts.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/.babelrc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v14.2.0 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/README.md -------------------------------------------------------------------------------- /fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/fly.toml -------------------------------------------------------------------------------- /gtag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/gtag.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/package.json -------------------------------------------------------------------------------- /public/fonts/Signerica_Fat.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/public/fonts/Signerica_Fat.ttf -------------------------------------------------------------------------------- /public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/public/images/favicon.png -------------------------------------------------------------------------------- /public/images/meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/public/images/meta.png -------------------------------------------------------------------------------- /src/components/ActiveLink/ActiveLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/ActiveLink/ActiveLink.js -------------------------------------------------------------------------------- /src/components/Alert/Alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Alert/Alert.js -------------------------------------------------------------------------------- /src/components/Alert/images/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Alert/images/close.svg -------------------------------------------------------------------------------- /src/components/ApiDocs/ApiDocs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/ApiDocs/ApiDocs.js -------------------------------------------------------------------------------- /src/components/ApiKeys/ApiKeyActionsDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/ApiKeys/ApiKeyActionsDropdown.js -------------------------------------------------------------------------------- /src/components/ApiKeys/ApiKeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/ApiKeys/ApiKeys.js -------------------------------------------------------------------------------- /src/components/ApiKeys/images/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/ApiKeys/images/key.svg -------------------------------------------------------------------------------- /src/components/ApiKeys/images/more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/ApiKeys/images/more.svg -------------------------------------------------------------------------------- /src/components/Authenticators/AuthenticatorActionsDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Authenticators/AuthenticatorActionsDropdown.js -------------------------------------------------------------------------------- /src/components/Authenticators/Authenticators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Authenticators/Authenticators.js -------------------------------------------------------------------------------- /src/components/Authenticators/images/fingerprint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Authenticators/images/fingerprint.svg -------------------------------------------------------------------------------- /src/components/Authenticators/images/more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Authenticators/images/more.svg -------------------------------------------------------------------------------- /src/components/Avatar/Avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Avatar/Avatar.js -------------------------------------------------------------------------------- /src/components/Browser/Browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Browser/Browser.js -------------------------------------------------------------------------------- /src/components/Browser/TiltView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Browser/TiltView.js -------------------------------------------------------------------------------- /src/components/Browser/images/browserLock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Browser/images/browserLock.svg -------------------------------------------------------------------------------- /src/components/Browser/nda-template.mock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Browser/nda-template.mock.json -------------------------------------------------------------------------------- /src/components/Browser/nda.mock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Browser/nda.mock.json -------------------------------------------------------------------------------- /src/components/Browser/user.mock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Browser/user.mock.json -------------------------------------------------------------------------------- /src/components/Clickable/Anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Clickable/Anchor.js -------------------------------------------------------------------------------- /src/components/Clickable/AnchorButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Clickable/AnchorButton.js -------------------------------------------------------------------------------- /src/components/Clickable/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Clickable/Button.js -------------------------------------------------------------------------------- /src/components/Clickable/ButtonAnchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Clickable/ButtonAnchor.js -------------------------------------------------------------------------------- /src/components/CreatorInfo/CreatorInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/CreatorInfo/CreatorInfo.js -------------------------------------------------------------------------------- /src/components/CreatorInfo/images/julia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/CreatorInfo/images/julia.png -------------------------------------------------------------------------------- /src/components/CustomNote/CustomNote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/CustomNote/CustomNote.js -------------------------------------------------------------------------------- /src/components/CustomNote/images/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/CustomNote/images/heart.svg -------------------------------------------------------------------------------- /src/components/CustomNote/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/CustomNote/images/logo.svg -------------------------------------------------------------------------------- /src/components/CustomNote/images/productHuntLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/CustomNote/images/productHuntLogo.png -------------------------------------------------------------------------------- /src/components/CustomNote/images/yCombinatorLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/CustomNote/images/yCombinatorLogo.png -------------------------------------------------------------------------------- /src/components/Dashboard/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Dashboard/Dashboard.js -------------------------------------------------------------------------------- /src/components/Dashboard/NdaActionsDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Dashboard/NdaActionsDropdown.js -------------------------------------------------------------------------------- /src/components/Dashboard/images/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Dashboard/images/calendar.svg -------------------------------------------------------------------------------- /src/components/Dashboard/images/more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Dashboard/images/more.svg -------------------------------------------------------------------------------- /src/components/Dashboard/images/rightArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Dashboard/images/rightArrow.svg -------------------------------------------------------------------------------- /src/components/Dialog/SimpleDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Dialog/SimpleDialog.js -------------------------------------------------------------------------------- /src/components/ErrorMessage/ErrorMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/ErrorMessage/ErrorMessage.js -------------------------------------------------------------------------------- /src/components/ErrorMessage/FieldErrorMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/ErrorMessage/FieldErrorMessage.js -------------------------------------------------------------------------------- /src/components/ErrorMessage/images/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/ErrorMessage/images/warning.svg -------------------------------------------------------------------------------- /src/components/ErrorView/ErrorView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/ErrorView/ErrorView.js -------------------------------------------------------------------------------- /src/components/Footer/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Footer/Footer.js -------------------------------------------------------------------------------- /src/components/Footer/images/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Footer/images/globe.svg -------------------------------------------------------------------------------- /src/components/Footer/images/logoWithText.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Footer/images/logoWithText.svg -------------------------------------------------------------------------------- /src/components/Footer/images/monitor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Footer/images/monitor.svg -------------------------------------------------------------------------------- /src/components/Footer/images/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Footer/images/moon.svg -------------------------------------------------------------------------------- /src/components/Footer/images/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Footer/images/sun.svg -------------------------------------------------------------------------------- /src/components/Head/Head.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Head/Head.js -------------------------------------------------------------------------------- /src/components/Home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Home/Home.js -------------------------------------------------------------------------------- /src/components/Home/images/nda.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Home/images/nda.svg -------------------------------------------------------------------------------- /src/components/Input/ContentEditableInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Input/ContentEditableInput.js -------------------------------------------------------------------------------- /src/components/Input/EmailInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Input/EmailInput.js -------------------------------------------------------------------------------- /src/components/Input/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Input/Input.js -------------------------------------------------------------------------------- /src/components/Input/PaymentAmountButtonGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Input/PaymentAmountButtonGroup.js -------------------------------------------------------------------------------- /src/components/Input/SelectInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Input/SelectInput.js -------------------------------------------------------------------------------- /src/components/Input/StripeInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Input/StripeInput.js -------------------------------------------------------------------------------- /src/components/Input/images/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Input/images/coffee.png -------------------------------------------------------------------------------- /src/components/Input/images/donut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Input/images/donut.png -------------------------------------------------------------------------------- /src/components/Input/images/down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Input/images/down.svg -------------------------------------------------------------------------------- /src/components/Input/images/pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Input/images/pizza.png -------------------------------------------------------------------------------- /src/components/Input/images/ramen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Input/images/ramen.png -------------------------------------------------------------------------------- /src/components/Input/images/salad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Input/images/salad.png -------------------------------------------------------------------------------- /src/components/LegalPolicy/LegalPolicy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/LegalPolicy/LegalPolicy.js -------------------------------------------------------------------------------- /src/components/LinkedInButton/LinkedInButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/LinkedInButton/LinkedInButton.js -------------------------------------------------------------------------------- /src/components/LinkedInButton/images/linkedInLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/LinkedInButton/images/linkedInLogo.svg -------------------------------------------------------------------------------- /src/components/LogIn/LogIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/LogIn/LogIn.js -------------------------------------------------------------------------------- /src/components/LogIn/images/biometrics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/LogIn/images/biometrics.svg -------------------------------------------------------------------------------- /src/components/LogoHeader/LogoHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/LogoHeader/LogoHeader.js -------------------------------------------------------------------------------- /src/components/LogoHeader/images/logoWithText.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/LogoHeader/images/logoWithText.svg -------------------------------------------------------------------------------- /src/components/Match/Match.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Match/Match.js -------------------------------------------------------------------------------- /src/components/NDA/NDA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/NDA/NDA.js -------------------------------------------------------------------------------- /src/components/NDA/NDABody.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/NDA/NDABody.js -------------------------------------------------------------------------------- /src/components/NDA/NDAComposer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/NDA/NDAComposer.js -------------------------------------------------------------------------------- /src/components/NDA/getFullNameFromUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/NDA/getFullNameFromUser.js -------------------------------------------------------------------------------- /src/components/NDA/images/hide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/NDA/images/hide.svg -------------------------------------------------------------------------------- /src/components/OpenSourceBanner/OpenSourceBanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/OpenSourceBanner/OpenSourceBanner.js -------------------------------------------------------------------------------- /src/components/OpenSourceBanner/images/githubLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/OpenSourceBanner/images/githubLogo.svg -------------------------------------------------------------------------------- /src/components/PaymentForm/PaymentForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/PaymentForm/PaymentForm.js -------------------------------------------------------------------------------- /src/components/SampleNda/SampleNda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/SampleNda/SampleNda.js -------------------------------------------------------------------------------- /src/components/SenderForm/SenderForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/SenderForm/SenderForm.js -------------------------------------------------------------------------------- /src/components/SenderForm/images/hide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/SenderForm/images/hide.svg -------------------------------------------------------------------------------- /src/components/SignatureHolder/SignatureHolder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/SignatureHolder/SignatureHolder.js -------------------------------------------------------------------------------- /src/components/SuccessMessage/SuccessMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/SuccessMessage/SuccessMessage.js -------------------------------------------------------------------------------- /src/components/Typewriter/Typewriter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/Typewriter/Typewriter.js -------------------------------------------------------------------------------- /src/components/UserActionBanner/UserActionBanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/UserActionBanner/UserActionBanner.js -------------------------------------------------------------------------------- /src/components/UserActionsDropdown/UserActionsDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/UserActionsDropdown/UserActionsDropdown.js -------------------------------------------------------------------------------- /src/components/UserActionsDropdown/images/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/components/UserActionsDropdown/images/chevron-down.svg -------------------------------------------------------------------------------- /src/css/nprogress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/css/nprogress.css -------------------------------------------------------------------------------- /src/db/loggerClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/db/loggerClient.js -------------------------------------------------------------------------------- /src/db/sentryBrowserClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/db/sentryBrowserClient.js -------------------------------------------------------------------------------- /src/db/sentryNodeClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/db/sentryNodeClient.js -------------------------------------------------------------------------------- /src/langs/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/langs/en.json -------------------------------------------------------------------------------- /src/langs/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/langs/es.json -------------------------------------------------------------------------------- /src/langs/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/langs/zh.json -------------------------------------------------------------------------------- /src/lib/cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/lib/cookies.js -------------------------------------------------------------------------------- /src/lib/localStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/lib/localStorage.js -------------------------------------------------------------------------------- /src/lib/robots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/lib/robots.js -------------------------------------------------------------------------------- /src/lib/sessionStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/lib/sessionStorage.js -------------------------------------------------------------------------------- /src/lib/sitemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/lib/sitemap.js -------------------------------------------------------------------------------- /src/lib/useLocale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/lib/useLocale.js -------------------------------------------------------------------------------- /src/lib/useTheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/lib/useTheme.js -------------------------------------------------------------------------------- /src/lib/useTypewriter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/lib/useTypewriter.js -------------------------------------------------------------------------------- /src/middleware/validateSentryRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/middleware/validateSentryRequest.js -------------------------------------------------------------------------------- /src/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/pages/_app.js -------------------------------------------------------------------------------- /src/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/pages/_document.js -------------------------------------------------------------------------------- /src/pages/_error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/pages/_error.js -------------------------------------------------------------------------------- /src/pages/dashboard/[dashboardType].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/pages/dashboard/[dashboardType].js -------------------------------------------------------------------------------- /src/pages/dev/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/pages/dev/docs.js -------------------------------------------------------------------------------- /src/pages/dev/keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/pages/dev/keys.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/pages/login.js -------------------------------------------------------------------------------- /src/pages/nda/[ndaId].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/pages/nda/[ndaId].js -------------------------------------------------------------------------------- /src/pages/nda/compose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/pages/nda/compose.js -------------------------------------------------------------------------------- /src/pages/nda/new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/pages/nda/new.js -------------------------------------------------------------------------------- /src/pages/nda/pay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/pages/nda/pay.js -------------------------------------------------------------------------------- /src/pages/nda/sent/[ndaId].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/pages/nda/sent/[ndaId].js -------------------------------------------------------------------------------- /src/pages/privacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/pages/privacy.js -------------------------------------------------------------------------------- /src/pages/sample/[...slug].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/pages/sample/[...slug].js -------------------------------------------------------------------------------- /src/pages/sessions/linkedin/callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/pages/sessions/linkedin/callback.js -------------------------------------------------------------------------------- /src/pages/settings/authenticators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/pages/settings/authenticators.js -------------------------------------------------------------------------------- /src/pages/terms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/pages/terms.js -------------------------------------------------------------------------------- /src/pages/ueta-esign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/pages/ueta-esign.js -------------------------------------------------------------------------------- /src/queries/useApiKeysQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/queries/useApiKeysQuery.js -------------------------------------------------------------------------------- /src/queries/useAuthenticatorsQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/queries/useAuthenticatorsQuery.js -------------------------------------------------------------------------------- /src/queries/useNdaQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/queries/useNdaQuery.js -------------------------------------------------------------------------------- /src/queries/useNdaTemplateOptionsQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/queries/useNdaTemplateOptionsQuery.js -------------------------------------------------------------------------------- /src/queries/useNdaTemplateQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/queries/useNdaTemplateQuery.js -------------------------------------------------------------------------------- /src/queries/useNdasQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/queries/useNdasQuery.js -------------------------------------------------------------------------------- /src/queries/useSessionQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/queries/useSessionQuery.js -------------------------------------------------------------------------------- /src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/server.js -------------------------------------------------------------------------------- /src/services/NdaifyService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/services/NdaifyService.js -------------------------------------------------------------------------------- /src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/util.js -------------------------------------------------------------------------------- /src/utils/__tests__/createXForwardedFor.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/utils/__tests__/createXForwardedFor.test.js -------------------------------------------------------------------------------- /src/utils/__tests__/getEmailSuggestions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/utils/__tests__/getEmailSuggestions.test.js -------------------------------------------------------------------------------- /src/utils/createXForwardedFor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/utils/createXForwardedFor.js -------------------------------------------------------------------------------- /src/utils/enhanceOpenApiSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/utils/enhanceOpenApiSpec.js -------------------------------------------------------------------------------- /src/utils/fillInNdaBlanks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/utils/fillInNdaBlanks.js -------------------------------------------------------------------------------- /src/utils/getEmailSuggestions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/utils/getEmailSuggestions.js -------------------------------------------------------------------------------- /src/utils/getSystemLocale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/utils/getSystemLocale.js -------------------------------------------------------------------------------- /src/utils/getTemplateIdParts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/utils/getTemplateIdParts.js -------------------------------------------------------------------------------- /src/utils/getUVPA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/utils/getUVPA.js -------------------------------------------------------------------------------- /src/utils/nowISO8601.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/utils/nowISO8601.js -------------------------------------------------------------------------------- /src/utils/parseFullName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/utils/parseFullName.js -------------------------------------------------------------------------------- /src/utils/parseLocaleParts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/src/utils/parseLocaleParts.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NDAify/ndaify-web/HEAD/yarn.lock --------------------------------------------------------------------------------