Skip to content
This repository has been archived by the owner on Jun 7, 2024. It is now read-only.

Commit

Permalink
fix broken recaptcha
Browse files Browse the repository at this point in the history
  • Loading branch information
mdunker committed Aug 10, 2017
1 parent 7552d58 commit c737d7c
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ limitations under the License.
<body>

<div class="dialog-area">
<c:if test="${!empty fn:escapeXml(it.errorMsg)}"><div class="dialog-form-message">${fn:escapeXml(it.errorMsg)}</div></c:if>
<c:if test="${!empty it.errorMsg}"><div class="dialog-form-message">${fn:escapeXml(it.errorMsg)}</div></c:if>
<form class="dialog-form" action="" method="post">
<input type="hidden" name="response_type" value="${fn:escapeXml(it.responseType)}">
<input type="hidden" name="client_id" value="${fn:escapeXml(it.clientId)}">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ limitations under the License.
</head>
<body>
<div class="dialog-area">
<c:if test="${!empty fn:escapeXml(it.errorMsg)}">
<c:if test="${!empty it.errorMsg}">
<div class="dialog-form-message">${fn:escapeXml(it.errorMsg)}</div>
</c:if>
<form class="dialog-form" action="" method="post">
Expand All @@ -37,7 +37,7 @@ limitations under the License.
<c:out value="${it.user.email}" escapeXml="true" />
</p>
<p id="human-proof"></p>
${fn:escapeXml(it.reCaptchaHtml)}
${it.reCaptchaHtml}
<p class="buttons">
<input type="submit" value="submit" />
</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ limitations under the License.
<body>

<div class="dialog-area">
<c:if test="${!empty fn:escapeXml(it.errorMsg)}"><div class="dialog-form-message">${fn:escapeXml(it.errorMsg)}</div></c:if>
<c:if test="${!empty it.errorMsg}"><div class="dialog-form-message">${fn:escapeXml(it.errorMsg)}</div></c:if>
<form class="dialog-form" action="" method="post">
<input type="hidden" name="token" value="${fn:escapeXml(it.token)}">
<fieldset>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ limitations under the License.
<body>

<div class="dialog-area">
<c:if test="${!empty fn:escapeXml(it.errorMsg)}">
<c:if test="${!empty it.errorMsg}">
<div class="dialog-form-message">${fn:escapeXml(it.errorMsg)}</div>
</c:if>
<form class="dialog-form" action="" method="post">
Expand All @@ -42,7 +42,7 @@ limitations under the License.
<input class="text_field" id="email" name="email" type="text" />
</p>
<p id="human-proof"></p>
${fn:escapeXml(it.reCaptchaHtml)}
${it.reCaptchaHtml}
<p class="buttons">
<button type="submit">Submit</button>
</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ limitations under the License.
<body>

<div class="dialog-area">
<c:if test="${!empty fn:escapeXml(it.errorMsg)}"><div class="dialog-form-message">${fn:escapeXml(it.errorMsg)}</div></c:if>
<c:if test="${!empty it.errorMsg}"><div class="dialog-form-message">${fn:escapeXml(it.errorMsg)}</div></c:if>
<form class="dialog-form" action="" method="post">
<input type="hidden" name="response_type" value="${fn:escapeXml(it.responseType)}">
<input type="hidden" name="client_id" value="${fn:escapeXml(it.clientId)}">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ limitations under the License.
</head>
<body>
<div class="dialog-area password-reset-form">
<c:if test="${!empty fn:escapeXml(it.errorMsg)}">
<c:if test="${!empty it.errorMsg}">
<div class="dialog-form-message">${fn:escapeXml(it.errorMsg)}</div>
</c:if>
<form class="dialog-form" action="" method="post">
Expand All @@ -37,7 +37,7 @@ limitations under the License.
<c:out value="${it.user.email}" escapeXml="true" />
</p>
<p id="human-proof"></p>
${fn:escapeXml(it.reCaptchaHtml)}
${it.reCaptchaHtml}
<p class="buttons">
<input type="submit" value="submit" />
</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ limitations under the License.
<body>

<div class="dialog-area">
<c:if test="${!empty fn:escapeXml(it.errorMsg)}"><div class="dialog-form-message">${fn:escapeXml(it.errorMsg)}</div></c:if>
<c:if test="${!empty it.errorMsg}"><div class="dialog-form-message">${fn:escapeXml(it.errorMsg)}</div></c:if>
<form class="dialog-form" action="" method="post">
<input type="hidden" name="token" value="${fn:escapeXml(it.token)}">
<fieldset>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ limitations under the License.
<body>

<div class="dialog-area">
<c:if test="${!empty fn:escnapeXml(it.errorMsg)}"><div class="dialog-form-message">${fn:escapeXml(it.errorMsg)}</div></c:if>
<c:if test="${!empty it.errorMsg}"><div class="dialog-form-message">${fn:escapeXml(it.errorMsg)}</div></c:if>
<form class="dialog-form" action="" method="post">
<fieldset>
<p>
Expand All @@ -38,7 +38,7 @@ limitations under the License.
<input class="text_field" id="email" name="email" type="text" />
</p>
<p id="human-proof"></p>
${fn:escapeXml(it.reCaptchaHtml)}
${it.reCaptchaHtml}
<p class="buttons">
<button type="submit">Submit</button>
</p>
Expand Down

0 comments on commit c737d7c

Please sign in to comment.