summaryrefslogtreecommitdiffstats
path: root/install/static/user.html
blob: c7a77b8ac5d96c95aa4aab542fb8b70179f1059e (plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
    "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3c.org/1999/xhtml" lang="en" xml:lang="en"
    xmlns:py="http://genshi.edgewall.org/">

<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>jQuery test page for IPA</title>

    <link href="ipa.css" rel="stylesheet" type="text/css" />

    <script src="jquery.js" type="text/javascript"> </script>
    <script src="ipa.js" type="text/javascript"> </script>
    <script src="user.js" type="text/javascript"> </script>
    <script src="details.js" type="text/javascript"> </script>

</head>

<body onload="load_object(this)">
<div id="view">
    <div id="header">
        <div id="logo">
            <a href="#">
                <img src="ipa_logo_180x50.png" />
            </a>
        </div>
        <div id="loggedinas">
            Logged in as <a href="user?principal=${context.principal}" py:content="context.principal"> </a>
        </div>
    </div>

    <div id="content">
        <h1>Managing user:</h1>
        <div id="buttons">
            <a href="dummy"><img id="butreset" src="but-reset.png" alt="Reset" /></a>
            <a href="dummy"><img id="butupdate" src="but-update.png" alt="Update" /></a>
        </div>
        <ul id="viewtype">
            <li id="viewcaption">View:</li>
            <li>
                <img src="but-selected.png" alt="" />
                Personal Details
            </li>
            <li>
                <img src="but-unselected.png" alt="" />
                <a href="memberof?pkey=${pkey}">Memberships</a>
            </li>
        </ul>
        <hr />

        <h2 onclick="h2_on_click(this)">&#8722; Identity Details</h2>
        <dl id="identity" class="entryattrs">
            <dt title="title">Title:</dt>
            <dt title="givenname">First Name:</dt>
            <dt title="sn">Last Name:</dt>
            <dt title="cn">Full Name:</dt>
            <dt title="displayname">Display Name:</dt>
            <dt title="initials">Initials:</dt>
        </dl>
        <hr />

        <h2 onclick="h2_on_click(this)">&#8722; Account Details</h2>
        <dl id="account" class="entryattrs">
            <dt title="call_a_status">Account Status:</dt>
            <dt title="uid">Login:</dt>
            <dt title="call_a_password">Password:</dt>
            <dt title="uidnumber">UID:</dt>
            <dt title="gidnumber">GID:</dt>
            <dt title="homedirectory">Home Directory:</dt>
        </dl>
        <hr />

        <h2 onclick="h2_on_click(this)">&#8722; Contact Details</h2>
        <dl id="contact" class="entryattrs">
            <dt title="mail">E-mail Address:</dt>
            <dt title="call_a_numbers">Numbers:</dt>
        </dl>
        <hr />

        <h2 onclick="h2_on_click(this)">&#8722; Mailing Address</h2>
        <dl id="mailing" class="entryattrs">
            <dt title="street">Address:</dt>
            <dt title="location">City:</dt>
            <dt title="call_a_st">State:</dt>
            <dt title="postalCode">ZIP:</dt>
        </dl>
        <hr />

        <h2 onclick="h2_on_click(this)">&#8722; Employee Information</h2>
        <dl id="employee" class="entryattrs">
            <dt title="ou">Org. Unit:</dt>
            <dt title="call_a_manager">Manager:</dt>
        </dl>
        <hr />

        <h2 onclick="h2_on_click(this)">&#8722; Misc. Information</h2>
        <dl id="misc" class="entryattrs">
            <dt title="carlicense">Car License:</dt>
        </dl>
        <hr />

        <div id="backtotop">
            <a href="#viewtype">Back to Top</a>
        </div>
    </div>
</div>
</body>

</html>