]> source.dussan.org Git - archiva.git/blob
d682788fa43b2843668bd5fc31c08c68e226575b
[archiva.git] /
1 <!--
2   ~ Licensed to the Apache Software Foundation (ASF) under one
3   ~ or more contributor license agreements.  See the NOTICE file
4   ~ distributed with this work for additional information
5   ~ regarding copyright ownership.  The ASF licenses this file
6   ~ to you under the Apache License, Version 2.0 (the
7   ~ "License"); you may not use this file except in compliance
8   ~ with the License.  You may obtain a copy of the License at
9   ~
10   ~   http://www.apache.org/licenses/LICENSE-2.0
11   ~
12   ~ Unless required by applicable law or agreed to in writing,
13   ~ software distributed under the License is distributed on an
14   ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   ~ KIND, either express or implied.  See the License for the
16   ~ specific language governing permissions and limitations
17   ~ under the License.
18 -->
19 <div id="modal-password-change" class="modal hide fade">
20   <div class="modal-header">
21     <a href="#" class="close" data-dismiss="modal">&times;</a>
22     <h3>${$.i18n.prop('password.section.title')}</h3>
23   </div>
24   <div class="modal-body" id="modal-password-change-content">
25       <form id="password-change-form" class="form-horizontal">
26         <div id="modal-password-change-err-message" class="alert-message error" style="display:none"></div>
27         <fieldset>
28           <!-- part displayed only when a logged user want to change password will be hide when validate user registration -->
29           <div class="control-group" id="password-change-form-current-password-div">
30             <label class="control-label" for="password-change-form-current-password">${$.i18n.prop('password.existing')}</label>
31             <div class="controls">
32               <input type="password" id="password-change-form-current-password" name="password-change-form-current-password" class="required" value=""/>
33             </div>
34           </div>
35
36           <div class="control-group">
37             <label class="control-label" for="passwordChangeFormNewPassword">${$.i18n.prop('password.new')}</label>
38             <div class="controls">
39               <input type="password" id="passwordChangeFormNewPassword" name="passwordChangeFormNewPassword" class="required" value=""/>
40             </div>
41           </div>
42
43           <div class="control-group">
44             <label class="control-label"  for="passwordChangeFormNewPasswordConfirm">${$.i18n.prop('password.new.confirm')}</label>
45             <div class="controls">
46               <input type="password" id="passwordChangeFormNewPasswordConfirm" name="passwordChangeFormNewPasswordConfirm" class="required" value=""/>
47             </div>
48           </div>
49         </fieldset>
50       </form>
51   </div>
52   <div class="modal-footer" id="modal-password-change-footer">
53     <button class="btn btn-primary" onclick="return" id="modal-change-password-ok">${$.i18n.prop('ok')}</button>
54   </div>
55 </div>