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
10 ~ http://www.apache.org/licenses/LICENSE-2.0
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
19 <div id="modal-register" class="modal hide fade">
20 <div class="modal-header">
21 <a href="#" class="close" data-dismiss="modal">×</a>
22 <h3>${$.i18n.prop('register.section.title')}</h3>
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>
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" />
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" />
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" />
50 <div class="modal-footer" id="modal-register-footer">
51 <button class="btn btn-primary" id="modal-register-ok">${$.i18n.prop('register')}</button>