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