summaryrefslogtreecommitdiff
path: root/login.php
diff options
context:
space:
mode:
Diffstat (limited to 'login.php')
-rw-r--r--login.php41
1 files changed, 41 insertions, 0 deletions
diff --git a/login.php b/login.php
new file mode 100644
index 0000000..5bd43c6
--- /dev/null
+++ b/login.php
@@ -0,0 +1,41 @@
+<html>
+
+<head>
+<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, target-densityDpi=device-dpi">
+<link rel="stylesheet" href="./res/admin.css">
+<style type="text/css">
+#container {
+ margin:0 auto;
+ max-width: 500px;
+}
+form .title {
+ display:block;
+ font-size:0.8em;
+ margin-bottom: 3px;
+}
+form .section{
+ margin-bottom: 10px;
+ padding: 5px;
+ background: #efefef;
+}
+form .text {
+ width: 100%;
+}
+</style>
+</head>
+
+<body>
+
+ <div id="container">
+ <label style="display:block; margin-bottom:10px;">Login</label>
+ <form action="authentication.php" method="post" enctype="multipart/form-data">
+ <div class="section">
+ <label class="title" for="token" >token:</label>
+ <input class="text" type="text" name="token" /><br/>
+ </div>
+ <input style="float:right" type="submit" value="Login" name="submit"/>
+ </form>
+ </div>
+
+</body>
+</html>