diff --git a/crates/templates/src/res/base.html b/crates/templates/src/res/base.html index cc5bfa87..f92b0193 100644 --- a/crates/templates/src/res/base.html +++ b/crates/templates/src/res/base.html @@ -46,7 +46,7 @@ limitations under the License. {{ button::button_ghost(text="Log out", name="logout", type="submit") }} {% else %} - {{ button::link(text="Log in", href="/login") }} + {{ button::link(text="Sign in", href="/login") }} {{ button::link_ghost(text="Register", href="/register") }} {% endif %} diff --git a/crates/templates/src/res/pages/login.html b/crates/templates/src/res/pages/login.html index 432f87c4..83f889c7 100644 --- a/crates/templates/src/res/pages/login.html +++ b/crates/templates/src/res/pages/login.html @@ -33,7 +33,7 @@ limitations under the License.
-

Log in

+

Sign in

{% if next and next.kind == "continue_authorization_grant" %}

to continue to {{ next.grant.client.client_name | default(value=next.grand.client.client_id) }}

{% else %} diff --git a/crates/templates/src/res/pages/register.html b/crates/templates/src/res/pages/register.html index d3ab2bae..4f784d06 100644 --- a/crates/templates/src/res/pages/register.html +++ b/crates/templates/src/res/pages/register.html @@ -45,7 +45,7 @@ limitations under the License. {{ field::input(label="Confirm Password", name="password_confirm", type="password") }} {{ button::button(text="Next") }} {# TODO: proper link #} - {{ button::link_text(text="Login instead", href=login_link) }} + {{ button::link_text(text="Sign in instead", href=login_link) }}