Statistics
| Revision:

root / web-presentation / trunk / eneraptor-web-presentation / grails-app / views / edit / edit.gsp @ 86

History | View | Annotate | Download (592 Bytes)

1 86 alexbesir
<html>
2
	<head>
3
		<meta name="layout" content="main">
4
		<style type="text/css">
5
		html, body {
6
			margin: 0px;
7
			padding: 0px;
8
		}
9
		</style>
10
	</head>
11
12
	<body>
13
		<p><g:link action="index" >back</g:link></p>
14
		<br />
15
		<p>Editing page ${page.contentId}</p>
16
17
		<g:form action="editDo" method="POST">
18
			<g:textArea name="newContent" style="width:550px;height:400px;">${page.contentHTML}</g:textArea>
19
			<br /><br />
20
			<g:hiddenField name="contentId" value="${page.contentId}" />
21
			<g:submitButton name="editSubmit" value="Save" />
22
		</g:form>
23
24
	</body>
25
26
</html>