diff options
-rw-r--r-- | app.js | 4 | ||||
-rw-r--r-- | overview/public/index.html | 7 | ||||
-rw-r--r-- | quotes/public/index.html | 12 |
3 files changed, 14 insertions, 9 deletions
@@ -35,8 +35,8 @@ app.use("/", express.static(__dirname + "/overview/public")); app.use("/mottovote", checkUser, mottovote); app.use("/quotes", checkUser, quotes); // app.use("/poll", checkUser, poll); -app.use("/profile", checkUser, profile); +// app.use("/profile", checkUser, profile); app.use("/admin", checkAdmin, admin); app.use("/auth", auth); -app.listen(process.env.PORT || 5005, () => console.log("Server started on http://localhost:5005")); +app.listen(process.env.PORT || 5005, () => console.log(`Server started on http://localhost:${process.env.PORT}`)); diff --git a/overview/public/index.html b/overview/public/index.html index 80a3fde..4a0d35e 100644 --- a/overview/public/index.html +++ b/overview/public/index.html @@ -41,6 +41,9 @@ <a href="/profile" class="pure-menu-link">Steckbrief</a> </li> <li class="pure-menu-item"> + <a href="/profile/users.html" class="pure-menu-link">Steckbriefe aller Schüler</a> + </li> + <li class="pure-menu-item"> <a href="/poll?type=pupil" class="pure-menu-link">Schüler-Ranking</a> </li> <li class="pure-menu-item"> @@ -58,7 +61,9 @@ <a href="mailto:abitur@marvinborner.de?subject=Feedback" class="pure-menu-link">E-Mail</a> </li> <li class="pure-menu-item"> - <a href="https://github.com/marvinborner/Abizeugs/" class="pure-menu-link">Source-Code</a> + <a href="https://github.com/marvinborner/Abizeugs/" class="pure-menu-link" target="_blank"> + Source-Code + </a> </li> </ul> </div> diff --git a/quotes/public/index.html b/quotes/public/index.html index ae95468..b2e4fa2 100644 --- a/quotes/public/index.html +++ b/quotes/public/index.html @@ -32,17 +32,17 @@ </form> <button id="open_TGI13.1">TGI13.1</button> - <ul style="display: none" id="TGI13.1"></ul> + <ul style="display: none;" id="TGI13.1"></ul> <button id="open_TGI13.2">TGI13.2</button> - <ul style="display: none" id="TGI13.2"></ul> + <ul style="display: none;" id="TGI13.2"></ul> <button id="open_TGM13.1">TGM13.1</button> - <ul style="display: none" id="TGM13.1"></ul> + <ul style="display: none;" id="TGM13.1"></ul> <button id="open_TGM13.2">TGM13.2</button> - <ul style="display: none" id="TGM13.2"></ul> + <ul style="display: none;" id="TGM13.2"></ul> <button id="open_TGTM13.1">TGTM13.1</button> - <ul style="display: none" id="TGTM13.1"></ul> + <ul style="display: none;" id="TGTM13.1"></ul> <button id="open_teacher">Lehrer</button> - <ul style="display: none" id="teacher"></ul> + <ul style="display: none;" id="teacher"></ul> </main> <script src="script.js" charset="utf-8"></script> |