File: login.mako

package info (click to toggle)
python-pysaml2 7.5.0-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 39,604 kB
  • sloc: xml: 388,184; python: 66,155; makefile: 148; sh: 80
file content (29 lines) | stat: -rw-r--r-- 829 bytes parent folder | download | duplicates (11)
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
<%inherit file="root.mako"/>

<h1>Please log in</h1>
<p class="description">
    To register it's quite simple: enter a login and a password
</p>

<form action="${action}" method="post">
    <input type="hidden" name="key" value="${key}"/>
    <input type="hidden" name="authn_reference" value="${authn_reference}"/>
    <input type="hidden" name="redirect_uri" value="${redirect_uri}"/>

    <div class="label">
        <label for="login">Username</label>
    </div>
    <div>
        <input type="text" name="login" value="${login}"/><br/>
    </div>

    <div class="label">
        <label for="password">Password</label>
    </div>
    <div>
        <input type="password" name="password"
               value="${password}"/>
    </div>

    <input class="submit" type="submit" name="form.submitted" value="Log In"/>
</form>