Compound doesn't have a value for bold so use semibold instead
This commit is contained in:
committed by
Quentin Gliech
parent
75485ba97c
commit
4eea6ca1cc
@@ -21,7 +21,7 @@ limitations under the License.
|
||||
<div class="grid grid-flow-col auto-cols-max gap-4 place-items-center">
|
||||
{% if current_session %}
|
||||
<div class="text-grey-200 dark:text-grey-250 mx-2">
|
||||
Signed in as <span class="font-bold">{{ current_session.user.username }}</span>.
|
||||
Signed in as <span class="font-semibold">{{ current_session.user.username }}</span>.
|
||||
</div>
|
||||
|
||||
{{ button::link(text="My account", href="/account/") }}
|
||||
|
||||
@@ -22,7 +22,7 @@ limitations under the License.
|
||||
<form method="POST" class="grid grid-cols-1 gap-6 w-96 m-2">
|
||||
<div class="text-center">
|
||||
<h1 class="text-lg text-center font-medium">Email verification</h1>
|
||||
<p>Please enter the 6-digit code sent to: <span class="font-bold">{{ email.email }}</span></p>
|
||||
<p>Please enter the 6-digit code sent to: <span class="font-semibold">{{ email.email }}</span></p>
|
||||
</div>
|
||||
|
||||
{% if form.errors is not empty %}
|
||||
|
||||
@@ -20,7 +20,7 @@ limitations under the License.
|
||||
{{ navbar::top() }}
|
||||
<section class="container mx-auto grid gap-4 grid-cols-1 md:grid-cols-2 xl:grid-cols-3 p-2">
|
||||
<form class="rounded border-2 border-grey-50 dark:border-grey-450 p-4 grid gap-4 xl:grid-cols-2 grid-cols-1 place-content-start" method="POST">
|
||||
<h2 class="text-xl font-bold xl:col-span-2">Change my password</h2>
|
||||
<h2 class="text-xl font-semibold xl:col-span-2">Change my password</h2>
|
||||
<input type="hidden" name="csrf" value="{{ csrf_token }}" />
|
||||
{{ field::input(label="Current password", name="current_password", type="password", autocomplete="current-password", class="xl:col-span-2") }}
|
||||
{{ field::input(label="New password", name="new_password", type="password", autocomplete="new-password") }}
|
||||
|
||||
@@ -38,7 +38,7 @@ limitations under the License.
|
||||
<p class="my-2">
|
||||
{{ scope::list(scopes=grant.scope) }}
|
||||
</p>
|
||||
<p class="font-bold my-2">Make sure that you trust {{ client.client_name | default(value=client.client_id) }}.</p>
|
||||
<p class="font-semibold my-2">Make sure that you trust {{ client.client_name | default(value=client.client_id) }}.</p>
|
||||
<p>
|
||||
You may be sharing sensitive information with this site or app.
|
||||
{% if client.policy_uri or client.tos_uri %}
|
||||
|
||||
@@ -20,7 +20,7 @@ limitations under the License.
|
||||
<section class="flex items-center justify-center flex-1">
|
||||
<div class="w-96 m-2">
|
||||
<div class="grid grid-cols-1 gap-6">
|
||||
<h1 class="text-xl font-bold">The authorization request was denied the policy enforced by this service.</h1>
|
||||
<h1 class="text-xl font-semibold">The authorization request was denied the policy enforced by this service.</h1>
|
||||
<p>This might be because of the client which authored the request, the currently logged in user, or the request itself.</p>
|
||||
<div class="rounded-lg bg-grey-25 dark:bg-grey-450 p-2 flex items-center">
|
||||
<div class="bg-white rounded w-16 h-16 overflow-hidden mx-auto">
|
||||
@@ -33,7 +33,7 @@ limitations under the License.
|
||||
|
||||
<div class="rounded-lg bg-grey-25 dark:bg-grey-450 p-2 flex items-center">
|
||||
<div class="text-center flex-1">
|
||||
Logged as <span class="font-bold">{{ current_session.user.username }}</span>
|
||||
Logged as <span class="font-semibold">{{ current_session.user.username }}</span>
|
||||
</div>
|
||||
|
||||
{{ logout::button(text="Sign out", class=button::plain_error_class(), csrf_token=csrf_token, post_logout_action=action) }}
|
||||
|
||||
@@ -33,7 +33,7 @@ limitations under the License.
|
||||
{{ scope::list(scopes="openid urn:matrix:org.matrix.msc2967.client:api:*") }}
|
||||
</p>
|
||||
|
||||
<p class="font-bold my-2">Make sure that you trust it.</p>
|
||||
<p class="font-semibold my-2">Make sure that you trust it.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user