hjg
2023-11-17 3780c5e65b05bf23020810798babc6d20311fa79
提交 | 用户 | 时间
58d006 1 <?xml version="1.0" encoding="UTF-8"?>
A 2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml"
4     xmlns:c="http://java.sun.com/jsp/jstl/core"
5     xmlns:h="http://java.sun.com/jsf/html"
6     xmlns:f="http://java.sun.com/jsf/core"
7     xmlns:ui="http://java.sun.com/jsf/facelets">
8
9 <ui:composition template="#{request.contextPath}/template/bison/temp.xhtml">
10     <ui:define name="title">
11         <title>系统注册</title>
12     </ui:define>
13     <ui:define name="bread">
14     </ui:define>
15     <ui:define name="rgt-content">
16         <div class="row">
17             <div class="col-md-12 form-horizontal">
18                 <div class="form-group">
19                     <label for="title" class="col-sm-3 control-label">序列号</label>
20                     <div class="col-sm-8">
21                         <span class="form-control">
22                             #{applicationScope.sc_webinfo.serial} </span>
23                     </div>
24                 </div>
25                 <div class="form-group">
26                     <label for="title" class="col-sm-3 control-label">注册码</label>
27                     <div class="col-sm-8">
28                         <input class="form-control" id="key" name="key"
29                             placeholder="请输入注册码" />
30                     </div>
31                 </div>
32                 <div class="form-group">
33                     <label for="title" class="col-sm-3 control-label"></label>
34                     <div class="col-sm-8">
35                         <button class="btn" type="button" id="reg">注册</button>
36                     </div>
37                 </div>
38             </div>
39         </div>
40     </ui:define>
41     <ui:define name="myscript">
42         <script type="text/javascript"
43             src="#{request.contextPath}/system/js/webinforeg.js"></script>
44     </ui:define>
45 </ui:composition>
46 </html>