Skip to content

Commit

Permalink
SAK-29567
Browse files Browse the repository at this point in the history
Email address field in not accessible
  • Loading branch information
Miguel Carro Pellicer committed Jun 26, 2015
1 parent 2e08648 commit 4d30309
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion feedback/src/webapp/WEB-INF/templates/content.handlebars
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@
<td id="feedback-description-label"><label for="feedback-description">{{translate 'description_label'}}</label></td>
<td id="feedback-description-field"><textarea id="feedback-description" name="description" cols="80" rows="5"></textarea></td>
</tr>
<tr id="feedback-sender-address"><td>{{translate 'sender_address_label'}}</td><td><input type="text" name="senderaddress" size="40"/></td></tr>
<tr>
<td id="feedback-sender-address-label"><label for="feedback-sender-address">{{translate 'sender_address_label'}}</label></td>
<td id="feedback-sender-address-field"><input id="feedback-sender-address" type="text" name="senderaddress" size="40"/></td>
</tr>
</table>
<input id="feedback-technical-email" value="{{technicalToAddress}}" hidden="hidden"/>
<input name="plugins" value="{{plugins}}" type="hidden"/>
Expand Down
5 changes: 4 additions & 1 deletion feedback/src/webapp/WEB-INF/templates/technical.handlebars
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@
<td id="feedback-description-label"><label for="feedback-description">{{translate 'description_label'}}</label></td>
<td id="feedback-description-field"><textarea id="feedback-description" name="description" cols="80" rows="5"></textarea></td>
</tr>
<tr id="feedback-sender-address"><td>{{translate 'sender_address_label'}}</td><td><input type="text" name="senderaddress" size="40"/></td></tr>
<tr>
<td id="feedback-sender-address-label"><label for="feedback-sender-address">{{translate 'sender_address_label'}}</label></td>
<td id="feedback-sender-address-field"><input id="feedback-sender-address" type="text" name="senderaddress" size="40"/></td>
</tr>
</table>
<input id="feedback-technical-email" value="{{technicalToAddress}}" hidden="hidden"/>
<input id="feedback-contactname" value="{{contactName}}" hidden="hidden"/>
Expand Down

0 comments on commit 4d30309

Please sign in to comment.