Revision 8203
Added by Lauren Walker about 11 years ago
auth-configuration.jsp | ||
---|---|---|
46 | 46 |
<body> |
47 | 47 |
<%@ include file="./header-section.jsp"%> |
48 | 48 |
|
49 |
<img src="<%= request.getContextPath() %>/metacat-logo.png" width="100px" align="right"/> |
|
49 |
<img src="<%= request.getContextPath() %>/metacat-logo-darkgray.png" width="100px" align="right"/>
|
|
50 | 50 |
<h2>Authentication Configuration</h2> |
51 | 51 |
Enter authentication service properties here. |
52 | 52 |
<br class="auth-header"> |
... | ... | |
72 | 72 |
%> |
73 | 73 |
<h3><%= metaDataGroup.getName() %></h3> |
74 | 74 |
<%= metaDataGroup.getDescription() %> |
75 |
<hr class="config-line"> |
|
76 | 75 |
<% |
77 | 76 |
// get all the properties in this group |
78 | 77 |
Map<Integer, MetaDataProperty> propertyMap = |
... | ... | |
94 | 93 |
if (fieldType.equals("select")) { |
95 | 94 |
%> |
96 | 95 |
<div class="form-row"> |
97 |
<img class="question-mark" src="style/images/help.png" |
|
98 |
onClick="helpWindow('<%= request.getContextPath() %>','<%= metaDataProperty.getHelpFile() %>')"/> |
|
99 | 96 |
<div class="textinput-label"><label for="<%= metaDataProperty.getKey() %>"><%= metaDataProperty.getLabel() %></label></div> |
100 | 97 |
<select class="textinput" name="<%= metaDataProperty.getKey() %>"> |
101 | 98 |
<% |
... | ... | |
108 | 105 |
} |
109 | 106 |
%> |
110 | 107 |
</select> |
108 |
<img class="question-mark" src="style/images/help.png" |
|
109 |
onClick="helpWindow('<%= request.getContextPath() %>','<%= metaDataProperty.getHelpFile() %>')"/> |
|
111 | 110 |
</div> |
112 | 111 |
<% |
113 | 112 |
if (metaDataProperty.getDescription() != null) { |
... | ... | |
118 | 117 |
} else if (fieldType.equals("password")) { |
119 | 118 |
%> |
120 | 119 |
<div class="form-row"> |
121 |
<img class="question-mark" src="style/images/help.png" |
|
122 |
onClick="helpWindow('<%= request.getContextPath() %>','<%= metaDataProperty.getHelpFile() %>')"/> |
|
123 | 120 |
<div class="textinput-label"><label for="<%= metaDataProperty.getKey() %>"><%= metaDataProperty.getLabel() %></label></div> |
124 | 121 |
<input class="textinput" id="<%= metaDataProperty.getKey() %>" name="<%= metaDataProperty.getKey() %>" |
125 | 122 |
value="<%= request.getAttribute(metaDataProperty.getKey()) %>" |
126 | 123 |
type="<%= fieldType %>"/> |
124 |
<img class="question-mark" src="style/images/help.png" |
|
125 |
onClick="helpWindow('<%= request.getContextPath() %>','<%= metaDataProperty.getHelpFile() %>')"/> |
|
127 | 126 |
</div> |
128 | 127 |
<% |
129 | 128 |
if (metaDataProperty.getDescription() != null) { |
... | ... | |
134 | 133 |
} else { |
135 | 134 |
%> |
136 | 135 |
<div class="form-row"> |
137 |
<img class="question-mark" src="style/images/help.png" |
|
138 |
onClick="helpWindow('<%= request.getContextPath() %>','<%= metaDataProperty.getHelpFile() %>')"/> |
|
139 | 136 |
<div class="textinput-label"><label for="<%= metaDataProperty.getKey() %>"><%= metaDataProperty.getLabel() %></label></div> |
140 | 137 |
<input class="textinput" id="<%= metaDataProperty.getKey() %>" name="<%= metaDataProperty.getKey() %>" |
141 | 138 |
value="<%= request.getAttribute(metaDataProperty.getKey()) %>" |
142 | 139 |
type="<%= fieldType %> "/> |
140 |
<img class="question-mark" src="style/images/help.png" |
|
141 |
onClick="helpWindow('<%= request.getContextPath() %>','<%= metaDataProperty.getHelpFile() %>')"/> |
|
143 | 142 |
</div> |
144 | 143 |
<% |
145 | 144 |
if (metaDataProperty.getDescription() != null) { |
Also available in: Unified diff
Redesigned the /admin configuration pages to better match our new MetacatUI design. Looks good in both /context/admin view and the #external view using metacatUI