<?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>
|