1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-08-06 06:02:40 +03:00

s/Login/Sign in/g

This commit is contained in:
Hugh Nimmo-Smith
2022-05-04 14:25:41 -04:00
committed by Quentin Gliech
parent 467746c246
commit be37b0db81
3 changed files with 3 additions and 3 deletions

View File

@@ -46,7 +46,7 @@ limitations under the License.
{{ button::button_ghost(text="Log out", name="logout", type="submit") }} {{ button::button_ghost(text="Log out", name="logout", type="submit") }}
</form> </form>
{% else %} {% else %}
{{ button::link(text="Log in", href="/login") }} {{ button::link(text="Sign in", href="/login") }}
{{ button::link_ghost(text="Register", href="/register") }} {{ button::link_ghost(text="Register", href="/register") }}
{% endif %} {% endif %}
</div> </div>

View File

@@ -33,7 +33,7 @@ limitations under the License.
<section class="flex items-center justify-center flex-1"> <section class="flex items-center justify-center flex-1">
<form method="POST" class="grid grid-cols-1 gap-6 w-96 m-2"> <form method="POST" class="grid grid-cols-1 gap-6 w-96 m-2">
<div class="text-center"> <div class="text-center">
<h1 class="text-lg text-center font-medium">Log in</h1> <h1 class="text-lg text-center font-medium">Sign in</h1>
{% if next and next.kind == "continue_authorization_grant" %} {% if next and next.kind == "continue_authorization_grant" %}
<p>to continue to <em>{{ next.grant.client.client_name | default(value=next.grand.client.client_id) }}</em></p> <p>to continue to <em>{{ next.grant.client.client_name | default(value=next.grand.client.client_id) }}</em></p>
{% else %} {% else %}

View File

@@ -45,7 +45,7 @@ limitations under the License.
{{ field::input(label="Confirm Password", name="password_confirm", type="password") }} {{ field::input(label="Confirm Password", name="password_confirm", type="password") }}
{{ button::button(text="Next") }} {{ button::button(text="Next") }}
{# TODO: proper link #} {# TODO: proper link #}
{{ button::link_text(text="Login instead", href=login_link) }} {{ button::link_text(text="Sign in instead", href=login_link) }}
</form> </form>
</section> </section>