├── .gitignore ├── LICENSE ├── README.md ├── firebase-firestore-rules.png ├── firebase-storage-rules.png ├── firebase.png ├── firebase_authentication.png ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.css ├── App.js ├── app │ └── store.js ├── components │ ├── Assign │ │ ├── Assign.js │ │ └── AssignSlice.js │ ├── AssignUsers.js │ ├── Header.js │ ├── Lists │ │ ├── SignList.js │ │ └── SignedList.js │ ├── MergeAnnotations │ │ └── MergeAnnotations.js │ ├── PasswordReset │ │ └── PasswordReset.js │ ├── Preparation.js │ ├── PrepareDocument │ │ ├── PrepareDocument.css │ │ └── PrepareDocument.js │ ├── Profile │ │ ├── Profile.css │ │ └── Profile.js │ ├── Sign.js │ ├── SignDocument │ │ ├── SignDocument.css │ │ ├── SignDocument.js │ │ └── SignDocumentSlice.js │ ├── SignIn │ │ └── SignIn.js │ ├── SignUp │ │ └── SignUp.js │ ├── View.js │ ├── ViewDocument │ │ ├── ViewDocument.css │ │ ├── ViewDocument.js │ │ └── ViewDocumentSlice.js │ └── Welcome.js ├── firebase │ ├── firebase.js │ └── firebaseSlice.js ├── index.css └── index.js └── tools └── copy-webviewer-files.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/README.md -------------------------------------------------------------------------------- /firebase-firestore-rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/firebase-firestore-rules.png -------------------------------------------------------------------------------- /firebase-storage-rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/firebase-storage-rules.png -------------------------------------------------------------------------------- /firebase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/firebase.png -------------------------------------------------------------------------------- /firebase_authentication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/firebase_authentication.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | .App { 2 | text-align: center; 3 | } -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/src/App.js -------------------------------------------------------------------------------- /src/app/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/src/app/store.js -------------------------------------------------------------------------------- /src/components/Assign/Assign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/src/components/Assign/Assign.js -------------------------------------------------------------------------------- /src/components/Assign/AssignSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/src/components/Assign/AssignSlice.js -------------------------------------------------------------------------------- /src/components/AssignUsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/src/components/AssignUsers.js -------------------------------------------------------------------------------- /src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/src/components/Header.js -------------------------------------------------------------------------------- /src/components/Lists/SignList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/src/components/Lists/SignList.js -------------------------------------------------------------------------------- /src/components/Lists/SignedList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/src/components/Lists/SignedList.js -------------------------------------------------------------------------------- /src/components/MergeAnnotations/MergeAnnotations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/src/components/MergeAnnotations/MergeAnnotations.js -------------------------------------------------------------------------------- /src/components/PasswordReset/PasswordReset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/src/components/PasswordReset/PasswordReset.js -------------------------------------------------------------------------------- /src/components/Preparation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/src/components/Preparation.js -------------------------------------------------------------------------------- /src/components/PrepareDocument/PrepareDocument.css: -------------------------------------------------------------------------------- 1 | .webviewer { 2 | height: calc(100vh - 83px); 3 | } -------------------------------------------------------------------------------- /src/components/PrepareDocument/PrepareDocument.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/src/components/PrepareDocument/PrepareDocument.js -------------------------------------------------------------------------------- /src/components/Profile/Profile.css: -------------------------------------------------------------------------------- 1 | .profileLink { 2 | text-decoration: none; 3 | } -------------------------------------------------------------------------------- /src/components/Profile/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/src/components/Profile/Profile.js -------------------------------------------------------------------------------- /src/components/Sign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/src/components/Sign.js -------------------------------------------------------------------------------- /src/components/SignDocument/SignDocument.css: -------------------------------------------------------------------------------- 1 | .webviewer { 2 | height: calc(100vh - 83px); 3 | } -------------------------------------------------------------------------------- /src/components/SignDocument/SignDocument.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/src/components/SignDocument/SignDocument.js -------------------------------------------------------------------------------- /src/components/SignDocument/SignDocumentSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/src/components/SignDocument/SignDocumentSlice.js -------------------------------------------------------------------------------- /src/components/SignIn/SignIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/src/components/SignIn/SignIn.js -------------------------------------------------------------------------------- /src/components/SignUp/SignUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/src/components/SignUp/SignUp.js -------------------------------------------------------------------------------- /src/components/View.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/src/components/View.js -------------------------------------------------------------------------------- /src/components/ViewDocument/ViewDocument.css: -------------------------------------------------------------------------------- 1 | .webviewer { 2 | height: calc(100vh - 83px); 3 | } -------------------------------------------------------------------------------- /src/components/ViewDocument/ViewDocument.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/src/components/ViewDocument/ViewDocument.js -------------------------------------------------------------------------------- /src/components/ViewDocument/ViewDocumentSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/src/components/ViewDocument/ViewDocumentSlice.js -------------------------------------------------------------------------------- /src/components/Welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/src/components/Welcome.js -------------------------------------------------------------------------------- /src/firebase/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/src/firebase/firebase.js -------------------------------------------------------------------------------- /src/firebase/firebaseSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/src/firebase/firebaseSlice.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/src/index.js -------------------------------------------------------------------------------- /tools/copy-webviewer-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApryseSDK/pdftron-sign-app/HEAD/tools/copy-webviewer-files.js --------------------------------------------------------------------------------