From 3f10975a93e93fcb611d0a5b3bfe8ce83536a59b Mon Sep 17 00:00:00 2001 From: Connor L Jackson Date: Tue, 15 Nov 2016 13:01:58 -0500 Subject: [PATCH] Home page added. --- html/ListingBootstrap.html | 73 ------------ html/css/stylesheet.css | 9 ++ .../listing.js} | 2 +- html/webpages/homePage.html | 92 +++++++++++++++ html/webpages/requestPage.html | 110 ++++++++++++++++++ 5 files changed, 212 insertions(+), 74 deletions(-) delete mode 100644 html/ListingBootstrap.html create mode 100644 html/css/stylesheet.css rename html/{ListingBootstrap.js => javascript/listing.js} (76%) create mode 100644 html/webpages/homePage.html create mode 100644 html/webpages/requestPage.html diff --git a/html/ListingBootstrap.html b/html/ListingBootstrap.html deleted file mode 100644 index 128d092..0000000 --- a/html/ListingBootstrap.html +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - Synchrony Financial - - - - - - - - - - - - - -
-

Available Devices

-
-
- - - - \ No newline at end of file diff --git a/html/css/stylesheet.css b/html/css/stylesheet.css new file mode 100644 index 0000000..c02399c --- /dev/null +++ b/html/css/stylesheet.css @@ -0,0 +1,9 @@ +body{ + background-color: #94969A; + padding-top: 50px; +} + +a.divlink{ + color: black; +} + diff --git a/html/ListingBootstrap.js b/html/javascript/listing.js similarity index 76% rename from html/ListingBootstrap.js rename to html/javascript/listing.js index d2c27ff..b27d54e 100644 --- a/html/ListingBootstrap.js +++ b/html/javascript/listing.js @@ -56,7 +56,7 @@ function show(){ for(var i = 0; i < devices.length; i++){ if(type.localeCompare(devices[i].hardware) == 0 || type.localeCompare(devices[i].software) == 0){ - html += '
' + devices[i].name + '

' + devices[i].description + '


' + html += '
' + devices[i].name + '

' + devices[i].description + '


' } } diff --git a/html/webpages/homePage.html b/html/webpages/homePage.html new file mode 100644 index 0000000..8de362e --- /dev/null +++ b/html/webpages/homePage.html @@ -0,0 +1,92 @@ + + + + + + + + + + Synchrony Financial + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/webpages/requestPage.html b/html/webpages/requestPage.html new file mode 100644 index 0000000..70c6367 --- /dev/null +++ b/html/webpages/requestPage.html @@ -0,0 +1,110 @@ + + + + + + + + + + Synchrony Financial + + + + + + + + + + + + +
+

Available Devices

+
+
+ + + + \ No newline at end of file