diff --git a/README.md b/README.md index f65e30ef2..69f9a91f7 100644 --- a/README.md +++ b/README.md @@ -27,13 +27,18 @@ In this project you will create a login page and request a token from the server Demonstrate your understanding of this Sprint's concepts by answering the following free-form questions. Edit this document to include your answers after each question. Make sure to leave a blank line above and below your answer so it is clear and easy to read by your project manager. - [ ] Explain what a token is used for. - + + These tokens, issued by the server, are strings of cryptic text, which can be stored on the client-side using local storage or session storage. + - [ ] What steps can you take in your web apps to keep your data secure? + Encrpt Login pages, create secure passwords - [ ] Describe how web servers work. -- [ ] Which HTTP methods can be mapped to the CRUD acronym that we use when interfacing with APIs/Servers. + web server processes incoming network requests over HTTP and several other related protocols. The primary function of a web server is to store, process and deliver web pages to clients +- [ ] Which HTTP methods can be mapped to the CRUD acronym that we use when interfacing with APIs/Servers. + Update data in API and Delete data in API ## Project Set Up