]> source.dussan.org Git - archiva.git/blob
931e72d2724b7377ab8bb623dd234f21befb059f
[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-register" class="modal hide fade">
20   <div class="modal-header">
21     <a href="#" class="close" data-dismiss="modal">&times;</a>
22     <h3>${$.i18n.prop('register.section.title')}</h3>
23   </div>
24   <div class="modal-body" id="modal-register-content">
25       <form id="user-register-form" class="form-horizontal">
26         <div id="modal-register-err-message" class="alert-message error" style="display:none"></div>
27         <fieldset>
28           <div class="control-group">
29             <label class="control-label" for="user-register-form-username">${$.i18n.prop('username')}</label>
30             <div class="controls">
31               <input type="text" id="user-register-form-username" name="user-register-form-username" class="required" />
32             </div>
33           </div>
34           <div class="control-group">
35             <label class="control-label" for="user-register-form-fullname">${$.i18n.prop('full.name')}</label>
36             <div class="controls">
37               <input type="text" id="user-register-form-fullname" name="user-register-form-fullname" class="required" />
38             </div>
39           </div>
40           <div class="control-group">
41             <label class="control-label" for="user-register-form-email">${$.i18n.prop('email')}</label>
42             <div class="controls">
43               <input type="text" id="user-register-form-email" name="user-register-form-email" class="required email" />
44             </div>
45           </div>
46
47         </fieldset>
48       </form>
49   </div>
50   <div class="modal-footer" id="modal-register-footer">
51       <button class="btn btn-primary" id="modal-register-ok">${$.i18n.prop('register')}</button>
52   </div>
53 </div>