aboutsummaryrefslogtreecommitdiff
path: root/newspipe/templates/login.html
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-08-31 16:59:43 -0400
committerB. Stack <bgstack15@gmail.com>2023-08-31 16:59:43 -0400
commit60dcc4fdf3868122c0099025d94b3c5579593473 (patch)
treea5a47452573c0b52b073e5113f23885cd519ea6a /newspipe/templates/login.html
parentchg: [dependencies] Updated Python dependencies. (diff)
downloadnewspipe-60dcc4fdf3868122c0099025d94b3c5579593473.tar.gz
newspipe-60dcc4fdf3868122c0099025d94b3c5579593473.tar.bz2
newspipe-60dcc4fdf3868122c0099025d94b3c5579593473.zip
stackrpms base plus reverse-proxystackrpms-master
Diffstat (limited to 'newspipe/templates/login.html')
-rw-r--r--newspipe/templates/login.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/newspipe/templates/login.html b/newspipe/templates/login.html
index b9952309..78af3c4a 100644
--- a/newspipe/templates/login.html
+++ b/newspipe/templates/login.html
@@ -19,7 +19,7 @@
<div class="alert alert-warning" role="alert">{{ message }}</div>
{% endfor %}
{{ form.submit(class_="btn btn-primary") }}
- {% if self_registration %}<a href="/signup" class="btn btn-info">{{ _('Sign up') }}</a>{% endif %}
+ {% if self_registration %}<a href="{{ prefix() }}/signup" class="btn btn-info">{{ _('Sign up') }}</a>{% endif %}
</form>
</div>
</div>
bgstack15