diff --git a/crates/templates/src/res/pages/consent.html b/crates/templates/src/res/pages/consent.html index 72dda19e9..f15a82b3b 100644 --- a/crates/templates/src/res/pages/consent.html +++ b/crates/templates/src/res/pages/consent.html @@ -85,7 +85,7 @@ limitations under the License.
{{ back_to_client::link( - text="Return to application", + text="Cancel", class=button::text_class(), uri=grant.redirect_uri, mode=grant.response_mode, diff --git a/crates/templates/src/res/pages/login.html b/crates/templates/src/res/pages/login.html index 11e3e9ba6..432f87c43 100644 --- a/crates/templates/src/res/pages/login.html +++ b/crates/templates/src/res/pages/login.html @@ -52,7 +52,7 @@ limitations under the License. {% if next and next.kind == "continue_authorization_grant" %}
{{ back_to_client::link( - text="Return to application", + text="Cancel", class=button::text_class(), uri=next.grant.redirect_uri, mode=next.grant.response_mode, diff --git a/crates/templates/src/res/pages/reauth.html b/crates/templates/src/res/pages/reauth.html index 388b4fd42..1b286aae1 100644 --- a/crates/templates/src/res/pages/reauth.html +++ b/crates/templates/src/res/pages/reauth.html @@ -57,7 +57,7 @@ limitations under the License. {% if next and next.kind == "continue_authorization_grant" %}
{{ back_to_client::link( - text="Return to application", + text="Cancel", class=button::text_class(), uri=next.grant.redirect_uri, mode=next.grant.response_mode, diff --git a/crates/templates/src/res/pages/register.html b/crates/templates/src/res/pages/register.html index 67e01357a..d3ab2baef 100644 --- a/crates/templates/src/res/pages/register.html +++ b/crates/templates/src/res/pages/register.html @@ -52,7 +52,7 @@ limitations under the License. {% if next and next.kind == "continue_authorization_grant" %}
{{ back_to_client::link( - text="Return to application", + text="Cancel", class=button::text_class(), uri=next.grant.redirect_uri, mode=next.grant.response_mode,