


Tap the " +" (plus sign) at the bottom of your screen.Open the Dropbox folder where you'd like to store your photos.If you don't have camera uploads enabled, you can manually add photos to your Dropbox account. Select the Dropbox save location, and save your content.Note: You must be logged into your Dropbox account on the Dropbox mobile app.Select what you’d like to upload to your Dropbox account.Open the app where the content is currently saved.You can upload content from other mobile apps (Photos, Messages, etc.) to your Dropbox account.
ADD HANDY NOTE HOW TO
How to upload content from other mobile apps

Not using Dropbox yet? See how Dropbox makes syncing files easy. Uploaded files sync everywhere you access your files in Dropbox. All Rights Reserved.The Dropbox mobile app allows you to create and upload files directly to your Dropbox account from your phone or tablet. © 2021 Trilogy Education Services, LLC, a 2U, Inc. The URL of the GitHub repository, with a unique name and a README describing the project. The URL of the functional, deployed application. You are required to submit BOTH of the following for review: Application allows users to delete notes.Repository contains quality README file with description, screenshot, and link to deployed application. Repository contains multiple descriptive commit messages. Repository follows best practices for class/id naming conventions, indentation, quality comments, etc. Repository follows best practices for file structure and naming conventions. GitHub repository contains application code.
ADD HANDY NOTE PLUS
Satisfies all of the preceding acceptance criteria plus the following:Īpplication front end must connect to an Express.js back end.Īpplication back end must store notes that have a unique id in a JSON file. This homework is graded based on the following criteria: Technical Acceptance Criteria: 40% To delete a note, you'll need to read all notes from the db.json file, remove the note with the given id property, and then rewrite the notes to the db.json file.

You'll need to find a way to give each note a unique id when it's saved (look into npm packages that could do this for you). POST /api/notes should receive a new note to save on the request body, add it to the db.json file, and then return the new note to the client. GET /api/notes should read the db.json file and return all saved notes as JSON. The following API routes should be created: GET /notes should return the notes.html file. The following HTML routes should be created: On the back end, the application should include a db.json file that will be used to store and retrieve notes using the fs module. The following images show the web application's appearance and functionality: THEN I am presented with empty fields to enter a new note title and the note’s text in the right-hand column WHEN I click on the Write icon in the navigation at the top of the page THEN that note appears in the right-hand column WHEN I click on an existing note in the list in the left-hand column THEN the new note I have entered is saved and appears in the left-hand column with the other existing notes THEN a Save icon appears in the navigation at the top of the page WHEN I enter a new note title and the note’s text THEN I am presented with a page with existing notes listed in the left-hand column, plus empty fields to enter a new note title and the note’s text in the right-hand column WHEN I click on the link to the notes page THEN I am presented with a landing page with a link to a notes page
