Skip to content

Commit

Permalink
fix: imagem logo
Browse files Browse the repository at this point in the history
  • Loading branch information
michelebswm committed Oct 12, 2023
1 parent d7ce01e commit ddb824c
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 5 deletions.
13 changes: 11 additions & 2 deletions filme/templates/criarconta.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,17 @@
<small>{{form.email.help_text }}</small>
</div>
<div class="form-group">
<input type="password" name="{{ form.password1.name }}" placeholder="Senha" required>
<small>{{form.password1.help_text }}</small>
{% if form.password1.errors %}
<input type="password" class="is-invalid" name="{{ form.password1.name }}" placeholder="Confirmação de Senha" required>
<div class="invalid-feedback">
{% for erro in form.password1.errors %}
{{ erro }}
{% endfor %}
</div>
{% else %}
<input type="password" name="{{ form.password1.name }}" placeholder="Confirmação de Senha" required>
<small>{{form.password1.help_text }}</small>
{% endif %}
</div>
<div class="form-group">
{% if form.password2.errors %}
Expand Down
4 changes: 4 additions & 0 deletions static/css/style_base.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ a {
align-items: center;
}

.nav-logo img{
widows: 145px;
height: 40px;
}
.nav-btn {
padding: 0.1rem 0.4rem;
border: 1px solid rgb(255, 0, 0);
Expand Down
Binary file added static/images/hashflix-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed static/images/hashflix.png
Binary file not shown.
4 changes: 2 additions & 2 deletions templates/footer.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{% load static %}
{% block head %}
<link rel="stylesheet" href="{% static 'css/style_footer.css' %}">
<link rel="stylesheet" href="{% static 'css/style_footer.css' %}" />
{% endblock %}

<footer class="footer">
<div class="text">2023</div>
<div class="text">Feito com (Django)</div>
<div class="text">Hashflix</div>
<div class="text">Michele BS</div>
</footer>
2 changes: 1 addition & 1 deletion templates/navbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<nav class="navbar">
<div class="nav-logo">
<a href="/">
<img src="{% static 'images/hashflix.png' %}" alt="logo-hashflix">
<img src="{% static 'images/hashflix-logo.png' %}" alt="logo-hashflix">
</a>
</div>

Expand Down

0 comments on commit ddb824c

Please sign in to comment.