+ Email:
+ Password:
+
+
+
+
diff --git a/LocalStorage/layout.css b/LocalStorage/layout.css
new file mode 100644
index 0000000..75ccabc
--- /dev/null
+++ b/LocalStorage/layout.css
@@ -0,0 +1,24 @@
+body {
+ text-align: center;
+}
+
+#oneaccount {
+ font-size: 36px;
+ color: gray;
+ font-family: 'Open Sans';
+}
+
+#signin {
+ font-size: 14px;
+ color: gray;
+ font-family: 'Open Sans';
+}
+
+button {
+ background-color: #1E90FF;
+ height: 10px;
+ width: 225px;
+ color: white;
+ padding: 10px 10px 25px 10px;
+ border-radius: 10%;
+}
diff --git a/LocalStorage/localstorage.js b/LocalStorage/localstorage.js
new file mode 100644
index 0000000..57c9d27
--- /dev/null
+++ b/LocalStorage/localstorage.js
@@ -0,0 +1,13 @@
+ var first = document.getElementById('first');
+ var second = document.getElementById('second');
+
+ first.value = localStorage.getItem('first');
+ second.value = localStorage.getItem('second');
+
+ first.addEventListener('input', function () {
+ localStorage.setItem('first', first.value);
+ }, false);
+
+ second.addEventListener('input', function () {
+ localStorage.setItem('second', second.value);
+ }, false);
diff --git a/readme.md b/readme.md
index f1e9101..0ea0b54 100755
--- a/readme.md
+++ b/readme.md
@@ -1,74 +1 @@
-# UXE - AppCache, Storage and Meta Data
-
-For this assignment, students will be required to produce a single static HTML page view that:
-
-- Uses static HTML and simple assets (css, images, etc ... )
-- Build simple functionality that exposes one of the following
- - AppCache
- - Local Storage
- - indexDB
- - File API
-- HTML should use examples of
- - Microdata, Microformats or RDF
- - ARIA
-
-
-## Submitting assignments
-
-Submitting assignments for this course will require leveraging some of the more advanced features of Github. These features will not only improve your knowledge of Git and Github, but also provide practice exercises for working on a distributed project with a large team.
-
-## How to submit an assignment
-
-In order to submit assignments, please use the following steps
-
-1. [Fork this repo][1] so that you have a working version
-1. [Clone the forked repo][2] to your local computer
-1. Create a folder named with your name, example `dale-sande`
-1. Once completed with your assignment, commit code to the master branch and push to Github `git push origin master`
-1. From __your fork__ of the project, initiate a pull request to the parent repo
-
-## Assignment review
-
-When a pull request is initiated, I will be notified of the update and comment on the submitted assignment via Github tools.
-
-## Keeping your local repo up to date
-Your local repo will be an independent version of the original repo from the moment you fork the repo. In order to keep your local repo up to date with the original repo, you need to do what is called an [upstream pull][3].
-
-To manage an upstream pull, I suggest updating your `.bash_profile` and your `.gitconfig` file with easy to remember aliases.
-
-### .bash_profile
-
-In your `.bash_profile` add the following alias
-
-```
-alias upstream="git remote add upstream \$@"
-```
-
-From the command line you simply need to refer to the alias and add the path to the upstream repo as shown in the following example.
-
-```
-$ upstream https://github.com/blackfalcon/unicorn-class-css-section.git
-```
-
-Once the upstream repo is configured for your local repo, this never needs to be reset again, unless you delete your local repo.
-
-### .gitconfig
-In your `.gitconfig` add the following alias
-
-```
-[alias]
- pu = !"git fetch origin -v; git fetch upstream -v; git merge upstream/master"
-```
-
-From the command line, within the project repo, enter the following command to pull latest code from the upstream master.
-
-```
-git pu
-```
-
-
-
-
-[1]:https://help.github.com/articles/fork-a-repo
-[2]:https://help.github.com/articles/fork-a-repo#step-2-clone-your-fork
-[3]:https://help.github.com/articles/syncing-a-fork
+There are two folders in this repo, one containing a folder with a file reader and another containing an html mockup of gmail.com with local storage.