-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
For #331
- Loading branch information
Terence Eden
committed
Nov 30, 2024
1 parent
0d9c43e
commit 578da2d
Showing
3 changed files
with
198 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{% extends "base.html.twig" %} | ||
|
||
{% block title %}Log in with Mastodon{% endblock %} | ||
|
||
{% block body %} | ||
{% if error is defined %} | ||
<h2>{{ error }}</h2> | ||
{% endif %} | ||
<form method="get"> | ||
<label for="mastodon">What is your Mastodon server?</label><br> | ||
<input type="url" id="mastodon" name="mastodon" placeholder="https://example.social/" required><br> | ||
<button>Authorise me!</button> | ||
</form> | ||
{% endblock %} |