Skip to content

Commit

Permalink
Add 4programmers.net logo to login and register
Browse files Browse the repository at this point in the history
  • Loading branch information
danon committed Oct 28, 2024
1 parent 72b59dd commit 5f5cb7e
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
13 changes: 12 additions & 1 deletion resources/views/auth/login.twig
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,19 @@
{% endblock %}

{% block fixed %}
<div class="row mt-4">
<div class="row">
<div class="col-12 col-sm-10 col-md-8 col-lg-6 col-xl-4 col-xxl-3 mx-auto">
<div class="mb-4">
<a href="/">
<img
class="logo mb-4"
alt="4programmers.net"
style="height:24px;"
src="{{ __dark_theme ? cdn('img/logo-footer-dark.svg') : cdn('img/logo-footer-light.svg') }}"
/>
</a>
</div>

{% if session_has('success') %}
<div class="alert alert-success mt-3">
{{ icon('alertSuccess') }}
Expand Down
11 changes: 11 additions & 0 deletions resources/views/auth/register.twig
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,17 @@
{% block fixed %}
<div class="row">
<div class="col-12 col-sm-10 col-md-8 col-lg-6 col-xl-4 col-xxl-3 mx-auto">
<div class="mb-4">
<a href="/">
<img
class="logo mb-4"
alt="4programmers.net"
style="height:24px;"
src="{{ __dark_theme ? cdn('img/logo-footer-dark.svg') : cdn('img/logo-footer-light.svg') }}"
/>
</a>
</div>

{% if session_has('success') %}
<div class="alert alert-success mt-3">
{{ icon('alertSuccess') }}
Expand Down

0 comments on commit 5f5cb7e

Please sign in to comment.