0
0
Fork 0
mirror of https://github.com/healthchecks/healthchecks.git synced 2025-04-04 21:05:26 +00:00

Fix the link to the Signal CAPTCHA form

This commit is contained in:
Pēteris Caune 2022-10-28 08:28:32 +03:00
parent 49fbd98615
commit 85be1ce481
No known key found for this signature in database
GPG key ID: E28D7679E9A9EDE2
2 changed files with 4 additions and 4 deletions
hc/api
templates/front

View file

@ -601,13 +601,12 @@ class Channel(models.Model):
message = f"Challenge token: {challenge}"
hostname = socket.gethostname()
submit_url = settings.SITE_ROOT + reverse("hc-signal-captcha")
submit_url += urlencode({"host": hostname, "challenge": challenge})
submit_url += "?" + urlencode({"host": hostname, "challenge": challenge})
html_message = f"""
On host <b>{hostname}</b>, run:<br>
<pre>manage.py submitchallenge {challenge} CAPTCHA-SOLUTION-HERE</pre><br>
<br>
Alternatively, submit CAPTCHA solution here: <br>
{submit_url}<br>
Alternatively, <a href="{submit_url}">submit CAPTCHA solution here</a>.<br>
<br>
Message from Signal:<br>
<pre>{raw}</pre>

View file

@ -20,8 +20,9 @@
<form method="post">
{% csrf_token %}
<div class="form-group">
<label for="captcha">Challenge</label>
<label for="challenge">Challenge</label>
<input
id="challenge"
name="challenge"
required
class="form-control"