summaryrefslogtreecommitdiff
path: root/index.html
blob: 74082028d366b566b42210b79cd8339c8c7b7833 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE HTML>
<html>
 <head>
  <title>Radio Helsinki - Automation Import</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta name="description" content="Importtool for Radio Helsinki">
  <meta name="author" content="Christian Pointner <equinox@ffgraz.net>">

  <link href="/javascript/twitter-bootstrap/css/bootstrap.css" rel="stylesheet">
  <link href="/styles/signin.css" rel="stylesheet">
  <style type="text/css">
    body {
      padding-top: 60px;
      padding-bottom: 40px;
    }

    .sidebar-nav {
      padding: 9px 0;
    }
  </style>
  <link href="/javascript/twitter-bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
  <script src="/javascript/jquery/jquery.min.js"></script>
  <script type="text/javascript">
    function authSuccess(data) {
       if (data.status == 'OK') {
         alert("username: " + data.username + "\ntoken: " + data.token );
       } else {
         alert("login error: " + data.errorstring);
       }
    }

    function authError(req, status, error) {
       alert(status + ": '" + error + "'")
    }

    function auth()
    {
      $.ajax("/authtoken.json",
              { cache: false,
                username: $("#username").val(),
                password: $("#password").val(),
                dataType: "json",
                error: authError,
                success: authSuccess
              });
    }
  </script>
 </head>
 <body>

  <div class="container">
    <form id="loginform" class="form-signin" role="form">
      <h1>Radio Helsinki - Import</h1>
      <h2 class="form-signin-heading">Please sign in</h2>
      <input id="username" type="text" class="form-control" placeholder="Username" required autofocus>
      <input id="password" type="password" class="form-control" placeholder="Password" required>
      <button class="btn btn-primary btn-large" type="submit"><i class="icon-user icon-white"></i> Sign in</button>
    </form>
  </div>

  <script type="text/javascript">
    $("#loginform").submit(function(event) { auth(); event.preventDefault(); });
  </script>

 </body>
</html>