summaryrefslogtreecommitdiff
path: root/index.html
blob: bfa7ea7af90a1e0a8b80b880151fb7bf4e9e3ae3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE HTML>
<html>
 <head>
  <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>
     <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>