blob: 0517e05697b81a797f6be33037968fe01b4fb348 [file] [log] [blame]
<%@ taglib prefix="s" uri="/struts-tags" %>
<!-- START SNIPPET: clientValidation -->
<html>
<head>
<title>Validation - Basic</title>
<s:head/>
</head>
<body>
<s:form method="post" validate="true">
<s:textfield label="Name" name="name"/>
<s:textfield label="Age" name="age"/>
<s:textfield label="Favorite color" name="answer"/>
<s:submit/>
</s:form>
</body>
</html>
<!-- END SNIPPET: clientValidation -->