5 |
6 |
Welcome {% if user.first_name %}{{ user.first_name }}{% else %}{{ user.username }}{% endif %}
7 |
8 |
9 | {% endblock %}
--------------------------------------------------------------------------------
/lesson8/templates_and_styles/index.css:
--------------------------------------------------------------------------------
1 | img {
2 | border: 3px solid #282c34;
3 | }
4 |
5 | .row {
6 | width: 100%;
7 | margin: 0;
8 | }
9 |
10 | .container-fluid {
11 | height: 100vh;
12 | background-color: #282c34;
13 | display: flex;
14 | justify-content: center;
15 | align-items: center;
16 | }
17 |
18 | .container-fluid > div {
19 | width: 85%;
20 | min-width: 300px;
21 | max-width: 500px;
22 | }
23 |
24 | .card {
25 | width: 100%;
26 | }
27 |
28 | .social-container {
29 | display: flex;
30 | flex-direction: column;
31 | justify-content: center;
32 | }
33 |
34 | .btn a, .btn a:hover {
35 | color: white;
36 | text-decoration: none ;
37 | }
--------------------------------------------------------------------------------
/lesson8/templates_and_styles/login.html:
--------------------------------------------------------------------------------
1 | {% extends 'base.html' %}
2 | {% block title %} Sign in {% endblock %}
3 | {% block content %}
4 |