~andreserl/+junk/cobbler

« back to all changes in this revision

Viewing changes to .pc/55_ubuntu_branding.patch/web/cobbler_web/templates/login.tmpl

  • Committer: Bazaar Package Importer
  • Author(s): Dustin Kirkland
  • Date: 2011-08-10 16:12:18 UTC
  • Revision ID: james.westby@ubuntu.com-20110810161218-zxvlziorfhdfj5ty
Tags: 2.1.0+git20110602-0ubuntu18
* debian/patches/55_ubuntu_branding.patch, debian/patches/series,
  web/content/logo-ubuntu.png:
  - skin the web interface with Ubuntu colors/logo
  - fix install location, move png to right location

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 
2
<html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml">
 
3
<head>
 
4
    <title>{% block title %}Cobbler Web Interface{% endblock %}</title>
 
5
    <meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
 
6
    <link rel="stylesheet" type="text/css" media="all" href="/cobbler_webui_content/style.css" />
 
7
</head>
 
8
<body class="loginscreen">
 
9
  <div id="login">
 
10
    <img src="/cobbler_webui_content/logo-cobbler.png" width="185" />
 
11
{% if form.errors %}
 
12
    <p class="error">Sorry, that's not a valid username or password</p>
 
13
{% endif %}
 
14
    <form action="/cobbler_web/do_login" method="post">
 
15
      {% if next %}<input type="hidden" name="next" value="{{ next|escape }}" />{% endif %}
 
16
      <div id="username">
 
17
        <label for="username">Username: </label>
 
18
        <input type="text" name="username" value="" id="username" autofocus>
 
19
      </div>
 
20
      <div id="password">
 
21
        <label for="password">Password: </label>
 
22
        <input type="password" name="password" value="" id="password">
 
23
      </div>
 
24
      <input class="button" type="submit" value="login" />
 
25
    </form>
 
26
  </div>
 
27
</body>
 
28
</html>