diff --git a/admin/index.html b/admin/index.html
index b2102c9..24803d6 100644
--- a/admin/index.html
+++ b/admin/index.html
@@ -157,12 +157,18 @@
- Push Notification
+ External Resources
+ Push Notifications
Login with NokomisJROTC Google Account to Push Notifications
+ Nokomis JROTC Blog
+ Login with NokomisJROTC Google Account to add blog post
+
@@ -201,7 +207,7 @@
|
-
+
diff --git a/css/style.css b/css/style.css
index 9e689dc..7721eb5 100644
--- a/css/style.css
+++ b/css/style.css
@@ -23,10 +23,6 @@
}
-.sign-table {
- width: 100%;
-}
-
.ad2hs-prompt {
background-color: green;
color: white;
diff --git a/index.html b/index.html
index 503a017..b41fe35 100644
--- a/index.html
+++ b/index.html
@@ -204,14 +204,14 @@
- Sign Ups
+ Blog
- Access digital sign up sheets here.
+ Access Nokomis JROTC's Blog here!
diff --git a/js/script.js b/js/script.js
index 9062edb..4271264 100644
--- a/js/script.js
+++ b/js/script.js
@@ -1,19 +1,3 @@
-// Get List of SignUps
-function signUpList() {
- database = firebase.database().ref("signup");
- database.once('value', function(snapshot) {
- snapshot.forEach(function(child) {
- firebase.database().ref("signup/" + child["key"]).on('value', function(data) {
- var data1 = data.val();
- var a = document.createElement("tr");
- a.innerHTML = " | "+child["key"]+" | "+data1["date"]+" | Info | "
- document.getElementById("table-body").appendChild(a)
- componentHandler.upgradeAllRegistered();
- });
- });
- });
-}
-
function externalOnLoad() {
var isMobile = window.orientation > -1;
if (isMobile) {
|