-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreply.xhtml
More file actions
37 lines (33 loc) · 2 KB
/
reply.xhtml
File metadata and controls
37 lines (33 loc) · 2 KB
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
<?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:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:pt="http://xmlns.jcp.org/jsf/passthrough">
<h:head>
<title>Facelet Title</title>
<h:outputStylesheet library="css" name="style.css"/>
<h:outputStylesheet library="css" name="bootstrap.min.css" />
<h:outputScript library="js" name="jquery-3.2.1.min.js" />
<h:outputScript library="js" name="bootstrap.min.js" />
<h:outputScript library="js" name="script.js" />
</h:head>
<h:body>
<ui:decorate template="template.xhtml">
<ui:define name="centerContent">
<h:form class="form-inline">
<div class="container" style="width: 50%;margin-left: 400px;margin-top: 50px;margin-bottom: 60px; ">
<h:outputLabel value="收件人:" for="qqt" style="margin-left: 42px"/>
<h:outputText id="qqt" class="form-control" value="#{sessionScope.detailedMes.id.moutId}" style="width: 300px;"/>
</div>
<div class="container" style="width: 50%;margin-left: 400px;margin-top: 50px;margin-bottom: 30px; ">
<h:outputLabel value="内容:" for="qqt1" style="margin-left: 55px"/>
<h:inputTextarea id="qqt1" class="form-control" style="margin-left: 100px" cols="100" rows="20"
pt:placeholder="请输入内容" value="#{replyBean.mcon}"/>
</div>
<h:commandButton action="#{replyBean.saveMes()}" value="发送" class="btn btn-primary btn-lg" style="margin-left: 1160px;margin-bottom: 50px;" />
</h:form>
</ui:define>
</ui:decorate>
</h:body>
</html>