aboutsummaryrefslogtreecommitdiff
path: root/newspipe/web/templates/login.html
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/web/templates/login.html')
-rw-r--r--newspipe/web/templates/login.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/newspipe/web/templates/login.html b/newspipe/web/templates/login.html
index 0c23b7fe..1253e2d3 100644
--- a/newspipe/web/templates/login.html
+++ b/newspipe/web/templates/login.html
@@ -20,11 +20,12 @@
{% for message in form.password.errors %}
<div class="alert alert-warning" role="alert">{{ message }}</div>
{% endfor %}
- {{ form.submit(class_="btn btn-light") }}
+ {{ form.submit(class_="btn btn-primary") }}
</form>
</div>
</div>
- <a href="/signup" class="btn btn-link">{{ _('Sign up') }}</a>
+ <br />
+ <a href="/signup" class="btn btn-primary">{{ _('Sign up') }}</a>
</div>
</div>
</div><!-- /.container -->
bgstack15