This commit is contained in:
Martin Quarda 2024-02-28 18:55:06 +01:00
parent be7cd33881
commit df4d2fe6a6
6 changed files with 336 additions and 1 deletions

View File

@ -83,6 +83,12 @@ DATABASES = {
}
# Email
DEFAULT_FROM_EMAIL = 'info@alkator.cz'
EMAIL_HOST = '10.0.0.10'
EMAIL_PORT = 25
# Password validation
# https://docs.djangoproject.com/en/4.2/ref/settings/#auth-password-validators

View 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

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 28 KiB

View File

@ -49,7 +49,7 @@ class Main extends Component {
{this.state.text}
</div>}
<div class="container">
<img class="logo" src="/public/logo.png"></img>
<img class="logo" src="/public/logo.svg"></img>
</div>
<div class="container info">
<div class="row">