Changeset 10608


Ignore:
Timestamp:
10 Sep 2013, 15:00:14 (11 years ago)
Author:
uli
Message:

Prepare login.html template for bootstrap 3.x.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.cas/trunk/waeup/cas/templates/login.html

    r10397 r10608  
    1 <html>
     1<!DOCTYPE html>
     2<html lang="en">
    23  <head>
    34    <title>WAeUP Central Authentication Service</title>
     5    PART_HEADER
    46  </head>
    57  <body>
    6     <div id="msg">
    7       MSG_TEXT
     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>
    831    </div>
    9     Please enter your credentials to authenticate:
    10     <form method="post">
    11       <input type="text" name="username" />
    12       <input type="password" name="password" />
    13       <input type="hidden" name="lt" value="LT_VALUE" />
    14       SERVICE_FIELD_VALUE
    15       <input type="submit" name="AUTHENTICATE" value="Login" />
    16     </form>
     32    PART_FOOTER
    1733  </body>
    1834</html>
Note: See TracChangeset for help on using the changeset viewer.