~cmiller/ubuntu/quantal/deluge/fix-parameter-move-storage

« back to all changes in this revision

Viewing changes to deluge/ui/webui/templates/classic/login.html

  • Committer: Bazaar Package Importer
  • Author(s): Cristian Greco
  • Date: 2009-11-13 02:39:45 UTC
  • mfrom: (4.1.7 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091113023945-te1bybo2912ejzuc
Tags: 1.2.0~rc3-4
* debian/control: bump build-dep on python-setuptools to (>= 0.6c9).
* debian/patches:
  - 25_r5921_fastresume_files.patch
    new, should fix problems with fresh configs;
  - 30_r5931_ipc_lockfile.patch:
    new, should fix an issue where Deluge will fail to start if there is a
    stale ipc lockfile. (Closes: #555849)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
$def with (error)
2
 
$:render.header(_('Login'))
3
 
<script language="javascript">
4
 
        window.onload = function () {
5
 
            document.getElementById('pwd').focus();
6
 
        }
7
 
</script>
8
 
<div class="panel">
9
 
<h2>$_("Deluge Login")</h2>
10
 
 
11
 
$if error > 0:
12
 
    <div class="error">$_("Password is invalid, try again")</div>
13
 
<form method="POST" id="loginform" action='$base/login'>
14
 
<input type="hidden" name="redir" value="$get('redir')">
15
 
<div id="loginpanel">
16
 
    <table><tr>
17
 
    <td>
18
 
        <span class="form_label" style="width:100px;">$_('Password')</span>
19
 
    </td><td>
20
 
        <input type="password" name="pwd" id="pwd" class="form_input">
21
 
    </td></tr>
22
 
    <tr><td>
23
 
        <span class="form_label" style="width:100px;"> &nbsp;</span>
24
 
    </td><td>
25
 
        <input type="submit" name="submit"
26
 
        id="submit" value="Submit" class="form_input">
27
 
    </td></tr>
28
 
    </table>
29
 
</div>
30
 
</form>
31
 
</div>
32
 
$:render.footer()