]> source.dussan.org Git - archiva.git/blob
3df4d84fb40a400fd90ec7e067abd43d05a5f5f9
[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-user-edit" 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-user-edit-content">
25       <form id="user-edit-form" class="form-horizontal">
26         <div id="modal-user-edit-err-message" class="alert-message error" style="display:none"></div>
27         <fieldset>
28           <div class="control-group">
29             <label class="control-label" for="username">${$.i18n.prop('username')}</label>
30             <div class="controls" id="username-div">
31               <span class="uneditable-input" id="username"></span>
32             </div>
33           </div>
34           <div class="control-group">
35             <label class="control-label" for="fullname">${$.i18n.prop('full.name')}</label>
36             <div class="controls">
37               <input type="text" id="fullname" name="fullname" size="30" class="required"/>
38             </div>
39           </div>
40           <div class="control-group">
41             <label class="control-label" for="email">${$.i18n.prop('email.address')}</label>
42             <div class="controls">
43               <input type="text" id="email" name="email" size="30" class="required email"/>
44             </div>
45           </div>
46           <div class="control-group" id="user-edit-form-current-password-div">
47             <label class="control-label" for="userEditFormCurrentPassword">${$.i18n.prop('password.existing')}</label>
48             <div class="controls">
49               <input type="password" id="userEditFormCurrentPassword" name="userEditFormCurrentPassword" class="required" value=""/>
50             </div>
51           </div>
52
53           <div class="control-group">
54             <label class="control-label" for="userEditFormNewPassword">${$.i18n.prop('password.new')}</label>
55             <div class="controls">
56               <input type="password" id="userEditFormNewPassword" name="userEditFormNewPassword" class="" value=""/>
57             </div>
58           </div>
59
60           <div class="control-group">
61             <label class="control-label" for="userEditFormNewPasswordConfirm">${$.i18n.prop('password.new.confirm')}</label>
62             <div class="controls">
63               <input type="password" id="userEditFormNewPasswordConfirm" name="userEditFormNewPasswordConfirm" class="" value=""/>
64             </div>
65           </div>
66         </fieldset>
67       </form>
68   </div>
69   <div class="modal-footer" id="modal-user-edit-footer">
70     <button class="btn primary" onclick="return" id="modal-user-edit-ok">${$.i18n.prop('ok')}</button>
71   </div>
72 </div>