summaryrefslogtreecommitdiffstats
path: root/install/ui/test.html
blob: bcab5dd901733df8dddd0abfc2ac9a4938da210c (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
<html>
<head>
    <title>IPA</title>

    <script type="text/javascript" src="json2.js"></script>

    <script type='text/javascript' src='steal/steal.js'></script>

    <script type="text/javascript">
steal.plugins(
        'jquery/controller',
        'jquery/controller/subscribe',
        'jquery/model').start();
    </script>

    <script type="text/javascript" src="jquery.cookie.js"></script>
    <script type="text/javascript" src="jquery-ui.js"></script>
    <script type="text/javascript" src="jquery.ba-bbq.js"></script>
    <script type='text/javascript' src='ipa.js'></script>

    <script type="text/javascript" src="develop.js"></script>

    <link rel="stylesheet" type="text/css" href="jquery-ui.css" />
    <script type="text/javascript" src="models/user.js"></script>
    <script type="text/javascript" src="controllers/user.js"></script>

</head>
<body>

<span name="search">

<table>
<thead>
    <th><input type="checkbox"></th>
    <th>User Login</th>
    <th>Full Name</th>
</thead>
<tbody>
<tr>
    <td><input type="checkbox" name="select"></td>
    <td><span name="uid"></span></td>
    <td><span name="cn"></span></td>
</tr>
</tbody>
</table>

<input name="add" type="button" value="Add">
<input name="delete" type="button" value="Delete">

</span>

<script type="text/javascript">
$(function() {
    IPA.init();
    $('span[name=search]').ipa_user_search_table();
});
</script>

</body>
</html>