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:
parent
49fbd98615
commit
85be1ce481
2 changed files with 4 additions and 4 deletions
|
@ -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>
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue