Created
May 30, 2016 17:33
-
-
Save chingovan/f856a7be97123340755147085c1f9365 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ taglib uri="http://java.sun.com/portlet_2_0" prefix="portlet" %> | |
<%@ taglib uri="http://liferay.com/tld/aui" prefix="aui" %> | |
<portlet:defineObjects /> | |
<portlet:actionURL var="sendEmailURL" name="sendEmail"> | |
</portlet:actionURL> | |
<aui:form action="<%= sendEmailURL %>" method="post"> | |
<aui:input label="Email" name="email" type="text" value="" /> | |
<aui:input label="Subject" name="subject" type="text" value="" /> | |
<aui:input label="Content" name="content" type="textarea" value=""/> | |
<aui:button type="submit" /> | |
</aui:form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment