Skip to content
Snippets Groups Projects
Create.html 1.33 KiB
Newer Older
{namespace sgm=SGalinski\SgMail\ViewHelpers}
<f:form action="create" controller="Configuration" method="post" objectName="configuration" object="{configuration}">
	<div class="row">
		<div class="col-xs-12 col-md-3">
			<div class="form-group">

				<label for="extensionKey"><f:translate key="backend.create.extensionKey" />EXT KEY</label>
				<f:form.select class="form-control" property="extensionKey" optionValueField="value" options="{extensions}" id="extensionKey" />

			</div>

			<div class="form-group">
				<label for="templateName"><f:translate key="backend.create.templateName" />TEMPLATE NAME</label>
				<f:form.textfield class="form-control" property="templateName" id="templateName" />
			</div>

			<div class="form-group">
				<label for="description"><f:translate key="backend.create.description" />description</label>
				<f:form.textarea class="form-control" property="description" id="description" />
			</div>

			<div class="form-group">
				<label for="subject"><f:translate key="backend.create.subject" />subject</label>
				<f:form.textfield class="form-control" property="subject" id="subject" />
			</div>

			<div class="form-group">
				<label for="content"><f:translate key="backend.create.content" />content</label>
				<f:form.textarea class="form-control" property="content" id="content" />
			</div>
		</div>
	</div>
</f:form>