SVG Logo added

SVG images can be scaled without any loss in quality.
This commit is contained in:
some weird guy
2023-07-25 13:43:46 -07:00
parent e9d1829fa3
commit 5116c0c3a9
6 changed files with 182 additions and 8 deletions
@@ -3,7 +3,7 @@
<div class="main-column center">
<div class="post-list-outline login-page">
<form method="post">
<img src="{% static "img/menu-logo.png" %}">
<img src="{% static "img/menu-logo.svg" %}">
<p class="lh">{{ title }}</p>
<p>If you've forgotten your password or need to reset it for some reason, you've come to the right place.<br>Yes, this works.</p>
<h3 class="label"><label>E-mail address: <input type="email" class="auth-input" name="email" placeholder="Email" required></label></h3>
@@ -17,4 +17,4 @@
</form>
</div>
</div>
{% endblock %}
{% endblock %}
@@ -3,7 +3,7 @@
<div class="main-column center">
<div class="post-list-outline login-page">
<form method="post">
<img src="{% static "img/menu-logo.png" %}">
<img src="{% static "img/menu-logo.svg" %}">
<p class="lh">Reset password</p>
<p>Hello {{ user.username }}, it's time to change your password.</p>
<form method="post">
@@ -19,4 +19,4 @@
</form>
</div>
</div>
{% endblock %}
{% endblock %}
@@ -101,7 +101,7 @@
<div id="wrapper"{% if not request.user.is_authenticated %} class="guest"{% endif %}>
<div id="sub-body">
<menu id="global-menu">
<li id="global-menu-logo"><h1><a href="/"><img src="{% static "img/menu-logo.png" %}" alt="Cedar"></a></h1></li>
<li id="global-menu-logo"><h1><a href="/"><img src="{% static "img/menu-logo.svg" %}" alt="Cedar"></a></h1></li>
{% if request.user.unique_id %}
<li id="global-menu-list">
<ul>
@@ -3,7 +3,7 @@
<div class="main-column center">
<div class="post-list-outline login-page">
<form method="post">
<img src="{% static "img/menu-logo.png" %}">
<img src="{% static "img/menu-logo.svg" %}">
<h1 class="lh">Sign In</h1>
<h2 class="lh">Please sign in to access Cedar.</h2>
<div class="login-box">
@@ -3,7 +3,7 @@
<div class="main-column center">
<div class="post-list-outline login-page">
<form method="post" onload="">
<img src="{% static "img/menu-logo.png" %}">
<img src="{% static "img/menu-logo.svg" %}">
<p class="lh">Sign Up</p>
<p>Create a Cedar account on this instance to access this instance.</p><br>
<p>Please follow <a href="{% url "main:help-rules" %}">our rules</a>. If you don't, be careful with your behavior.<br><br>You <strong>must</strong> be {{ age }} years of age or older to join, no exceptions.<br>If you are suspected to be younger than {{ age }} years old, we will ban you until you're {{ age }}.</p>
@@ -34,4 +34,4 @@
</form>
</div>
</div>
{% endblock %}
{% endblock %}