Fix Hazelcast Sample attributeValue -> attributeName

The id attribute should have been attributeName instead of
attributeValue

Fixes gh-221
This commit is contained in:
Slavisa Avramovic
2015-06-08 18:35:04 +02:00
committed by Rob Winch
parent 1bee69ef15
commit cc0c6bda42
3 changed files with 6 additions and 6 deletions

View File

@@ -18,8 +18,8 @@
<h1>Try it</h1>
<form class="form-inline" role="form" action="./session" method="post">
<label for="attributeValue">Attribute Name</label>
<input id="attributeValue" type="text" name="attributeName"/>
<label for="attributeName">Attribute Name</label>
<input id="attributeName" type="text" name="attributeName"/>
<label for="attributeValue">Attribute Value</label>
<input id="attributeValue" type="text" name="attributeValue"/>
<input type="submit" value="Set Attribute"/>