mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-29 10:21:18 -06:00
125bd09faf
Now with whitespace cleanup.
113 lines
3.6 KiB
HTML
113 lines
3.6 KiB
HTML
<?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)">− 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)">− 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)">− 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)">− 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)">− 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)">− 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>
|
|
|