From 07811cfa597c802e48aa25c88f28e064e72c1bcb Mon Sep 17 00:00:00 2001
From: Tim Repke <repketim@informatik.hu-berlin.de>
Date: Fri, 8 Aug 2014 17:36:26 +0200
Subject: [PATCH] added unnice admin template

---
 registration-system/view/admin_template.html | 51 ++++++++++++++++++++
 1 file changed, 51 insertions(+)
 create mode 100644 registration-system/view/admin_template.html

diff --git a/registration-system/view/admin_template.html b/registration-system/view/admin_template.html
new file mode 100644
index 0000000..9c35cbb
--- /dev/null
+++ b/registration-system/view/admin_template.html
@@ -0,0 +1,51 @@
+<!DOCTYPE html>
+
+<html>
+<head>
+    <title>FSFahrt - Admin Panel</title>
+    <style type="text/css">
+        body {
+            font-family:Verdana,Helvetica,sans-serif;
+            font-size:12pt;
+            margin-top: 40px;
+        }
+        a:link, a:visited {
+            background-color:inherit;
+            color:#ff8400;;
+            text-decoration:none;
+        }
+        a:active, a:hover {
+            background-color:inherit;
+            color:#ff6000;
+            text-decoration:none;
+        }
+        #linkbar{
+            border-bottom: 1px dashed coral;
+            width: 100%;
+            position: fixed;
+            top:0;
+            left: 0;
+            right: 0;
+            padding: 5px;
+            background: #f5f5f5;
+        }
+        #linkbar a{
+            border-left: 1px dotted #d3d3d3;
+            padding: 0 5px;
+        }
+
+        }
+    </style>
+</head>
+<body>
+
+<div>
+    {text}
+</div>
+
+<div id="linkbar">
+    {navigation}
+</div>
+
+</body>
+</html>
\ No newline at end of file
-- 
GitLab