new logo
This commit is contained in:
parent
be7cd33881
commit
df4d2fe6a6
@ -83,6 +83,12 @@ DATABASES = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Email
|
||||||
|
DEFAULT_FROM_EMAIL = 'info@alkator.cz'
|
||||||
|
EMAIL_HOST = '10.0.0.10'
|
||||||
|
EMAIL_PORT = 25
|
||||||
|
|
||||||
|
|
||||||
# Password validation
|
# Password validation
|
||||||
# https://docs.djangoproject.com/en/4.2/ref/settings/#auth-password-validators
|
# https://docs.djangoproject.com/en/4.2/ref/settings/#auth-password-validators
|
||||||
|
|
||||||
|
20
alkatorapi/migrations/0002_user_date_of_birth.py
Normal file
20
alkatorapi/migrations/0002_user_date_of_birth.py
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
# Generated by Django 4.2.7 on 2024-02-28 11:18
|
||||||
|
|
||||||
|
import datetime
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('alkatorapi', '0001_initial'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AddField(
|
||||||
|
model_name='user',
|
||||||
|
name='date_of_birth',
|
||||||
|
field=models.DateField(default=datetime.date.today),
|
||||||
|
preserve_default=False,
|
||||||
|
),
|
||||||
|
]
|
Binary file not shown.
Before Width: | Height: | Size: 1.4 MiB After Width: | Height: | Size: 1.9 MiB |
Binary file not shown.
Before Width: | Height: | Size: 248 KiB |
309
frontend/public/logo.svg
Normal file
309
frontend/public/logo.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 28 KiB |
@ -49,7 +49,7 @@ class Main extends Component {
|
|||||||
{this.state.text}
|
{this.state.text}
|
||||||
</div>}
|
</div>}
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<img class="logo" src="/public/logo.png"></img>
|
<img class="logo" src="/public/logo.svg"></img>
|
||||||
</div>
|
</div>
|
||||||
<div class="container info">
|
<div class="container info">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user