From 4b0a5c9c22214d90fd0ad1a8622de39a8b622a55 Mon Sep 17 00:00:00 2001 From: Dani Blackwell Date: Fri, 31 Jan 2020 11:52:35 -0600 Subject: [PATCH] Answers Answered --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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