source: main/waeup.cas/trunk/waeup/cas/templates/login.html @ 10610

Last change on this file since 10610 was 10608, checked in by uli, 11 years ago

Prepare login.html template for bootstrap 3.x.

File size: 1.1 KB
Line 
1<!DOCTYPE html>
2<html lang="en">
3  <head>
4    <title>WAeUP Central Authentication Service</title>
5    PART_HEADER
6  </head>
7  <body>
8    <div class="container">
9      <h2 class="text-center">WAeUP Central Authentication Service</h2>
10      <form method="post" class="form-signin">
11
12        <div id="msg" class="alert alert-warning alert-dismissable">
13          <button type="button" class="close"
14                  data-dismiss="alert" aria-hidden="true">&times;</button>
15          MSG_TEXT
16        </div>
17
18        <h4 class="form-signin-heading">
19          Please authenticate:
20        </h4>
21
22        <input type="text" name="username" class="form-control"
23               placeholder="Username" autofocus/>
24        <input type="password" name="password" class="form-control"
25               placeholder="Password" />
26        <input type="hidden" name="lt" value="LT_VALUE" />
27        SERVICE_FIELD_VALUE
28        <input type="submit" name="AUTHENTICATE" value="Login"
29               class="btn btn-lg btn-primary btn-block" />
30      </form>
31    </div>
32    PART_FOOTER
33  </body>
34</html>
Note: See TracBrowser for help on using the repository browser.