You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
719 B
20 lines
719 B
{% extends 'layout.html.twig' %} |
|
|
|
{% block title %}Login | Decent Newsroom{% endblock %} |
|
|
|
{% block body %} |
|
<div class="container my-5"> |
|
<h1 class="h3 mb-4">Login</h1> |
|
{% if authenticated %} |
|
<div class="alert alert-success">You are already authenticated.</div> |
|
{% else %} |
|
<div class="card"> |
|
<div class="card-body" data-controller="login"> |
|
<p class="text-muted small mb-3">Use your Nostr credentials to authenticate.</p> |
|
<button class="btn btn--primary" data-action="click->login#loginAct">Login with Extension</button> |
|
<a class="btn btn--primary" href="{{ path('app_login_signer') }}">Login with a remote signer</a> |
|
</div> |
|
</div> |
|
{% endif %} |
|
</div> |
|
{% endblock %}
|
|
|