summaryrefslogtreecommitdiff
path: root/login.php
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2022-03-18 23:38:15 +0800
committerchai <chaifix@163.com>2022-03-18 23:38:15 +0800
commitb970e38c6cbde1e573c1d7a1d1b1685c1ca5bde1 (patch)
tree1c61a26bf0970ce8fc0b2b11d547b926c403ef82 /login.php
parentf63d8e742f6f1cd0321acfd9ffcfd71afd6c956d (diff)
*admin login
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>