summaryrefslogtreecommitdiffstats
path: root/install/ui/layouts/default/hbacrule-details-user.html
blob: 1b58848fe236c4c37054c05bcaf4807da0c12dff (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
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Who</title>

    <link rel="stylesheet" type="text/css" href="jquery-ui.css" />
    <link rel="stylesheet" type="text/css" href="ipa.css" />
</head>
<body>
<div id="contents">
    Rule applies when access is requested by:
    <span name="usercategory">
        <input type="radio" name="usercategory" value="all"/>Anyone
        <input type="radio" name="usercategory" value=""/>Specified Users and Groups
        <span name="undo" class="ui-state-highlight ui-corner-all" style="display: none;">undo</span>
    </span>
    <br/>

    <span name="memberuser_user">
    <table class="search-table">
    <thead>
        <tr>
            <th style="width: 25px;">
                <input type="checkbox" name="select"/>
            </th>
            <th>
                <span style="float: left;">User</span>
                <span name="buttons" style="float: right;">
                    <input type="button" name="remove" value="Remove Users"/>
                    <input type="button" name="add" value="Add Users"/>
                </span>
            </th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>
                <input type="checkbox" name="select" value="user"/>
            </td>
            <td>
                <span name="memberuser_user">user</span>
            </td>
        </tr>
    </tbody>
    </table>
    </span>

    <span name="memberuser_group">
    <table class="search-table">
    <thead>
        <tr>
            <th style="width: 25px;">
                <input type="checkbox" name="select"/>
            </th>
            <th>
                <span style="float: left;">User Group</span>
                <span name="buttons" style="float: right;">
                    <input type="button" name="remove" value="Remove User Groups"/>
                    <input type="button" name="add" value="Add User Groups"/>
                </span>
            </th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>
                <input type="checkbox" name="select" value="users"/>
            </td>
            <td>
                <span name="memberuser_group">users</span>
            </td>
        </tr>
    </tbody>
    </table>
    </span>
</div>
</body>
</html>