diff options
| author | Bobby <[email protected]> | 2022-09-10 19:22:52 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-09-10 19:22:52 -0400 |
| commit | e385f75de7d3cf1499697115e86cbfbfc5e004a3 (patch) | |
| tree | 4e70dd1f34cc12571893ca4f50a51632febf1dca | |
| parent | 4eab4c8ea926c0f83192bdf59cc1612b42e7eb05 (diff) | |
| download | thatcomputerscientist-e385f75de7d3cf1499697115e86cbfbfc5e004a3.tar.xz thatcomputerscientist-e385f75de7d3cf1499697115e86cbfbfc5e004a3.zip | |
Fixed refresh_captcha URL not working
| -rw-r--r-- | templates/blog/register.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/blog/register.html b/templates/blog/register.html index 44fbc116..4d561cb3 100644 --- a/templates/blog/register.html +++ b/templates/blog/register.html @@ -46,7 +46,7 @@ <div id="captcha"> {% load static %} <img src="{{ captcha }}" alt="captcha" class="captcha" id="captcha_image" style="display: block;"> - <img src="{% static 'images/icons/button_refresh.jpeg' %}" alt="Refresh Captcha" id="refresh_captcha" data-refresh-captcha-url="{% url 'refresh_captcha' %}"> + <img src="{% static 'images/icons/button_refresh.jpeg' %}" alt="Refresh Captcha" id="refresh_captcha" data-refresh-captcha-url="{% url 'blog:refresh_captcha' %}"> </div> <input type="text" name="captcha" id="captcha" class="form-control" placeholder="Type Captcha" required> {% for message in messages %} |
