diff options
author | Christian Pointner <equinox@helsinki.at> | 2014-09-16 23:23:49 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2014-09-16 23:23:49 (GMT) |
commit | 4e25ed2e6ff1c1fb13e03fdf2db5b90e6d70257e (patch) | |
tree | e34da51e75848b3a69b7d63271912b4e7d2efb65 /index.html | |
parent | 324de3e243aaa09e53b245b150c701b6e66f6621 (diff) |
added login form and action
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -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> |