summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2014-09-16 23:23:49 (GMT)
committerChristian Pointner <equinox@helsinki.at>2014-09-16 23:23:49 (GMT)
commit4e25ed2e6ff1c1fb13e03fdf2db5b90e6d70257e (patch)
treee34da51e75848b3a69b7d63271912b4e7d2efb65
parent324de3e243aaa09e53b245b150c701b6e66f6621 (diff)
added login form and action
-rw-r--r--index.html14
1 files changed, 13 insertions, 1 deletions
diff --git a/index.html b/index.html
index a22d847..bfa7ea7 100644
--- a/index.html
+++ b/index.html
@@ -4,11 +4,23 @@
<title>Radio Helsinki - Automation Import</title>
<link rel="stylesheet" type="text/css" href="/styles/import.css" />
<script src="/javascript/jquery/jquery.min.js"></script>
+ <script type="text/javascript">
+ function authenticate()
+ {
+ alert("hello world");
+ }
+ </script>
</head>
<body>
<h1>Radio Helsinki - Automation Import</h1>
<p>
- coming soon!
+ <form onSubmit="authenticate()">
+ <ul>
+ <li><label for="name">Benutzername:</label> <input type="text" id="username" value=""> </li>
+ <li> <label for="pass">Kennwort:</label> <input type="password" id="password" value=""> </li>
+ <li> <input type="submit" value="Einloggen"> </li>
+ </ul>
+ </form>
</p>
</body>
</html>