├── fronend ├── urls ├── __init__.py ├── migrations │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── 0001_initial.cpython-310.pyc │ │ ├── 0009_initial.cpython-310.pyc │ │ ├── 0006_yosh_ism1.cpython-310.pyc │ │ ├── 0014_delete_odam.cpython-310.pyc │ │ ├── 0008_delete_student.cpython-310.pyc │ │ ├── 0003_rename_user_odam.cpython-310.pyc │ │ ├── 0004_user_delete_odam.cpython-310.pyc │ │ ├── 0005_yosh_delete_user.cpython-310.pyc │ │ ├── 0011_remove_student_img.cpython-310.pyc │ │ ├── 0013_rename_user_odam.cpython-310.pyc │ │ ├── 0007_student_delete_yosh.cpython-310.pyc │ │ ├── 0012_rename_student_user.cpython-310.pyc │ │ ├── 0010_rename_ism_student_bio_remove_student_kurs_and_more.cpython-310.pyc │ │ └── 0002_remove_user_bio_remove_user_databio_remove_user_img_and_more.cpython-310.pyc │ ├── 0014_delete_odam.py │ ├── 0008_delete_student.py │ ├── 0013_rename_user_odam.py │ ├── 0012_rename_student_user.py │ ├── 0011_remove_student_img.py │ ├── 0003_rename_user_odam.py │ ├── 0006_yosh_ism1.py │ ├── 0005_yosh_delete_user.py │ ├── 0009_initial.py │ ├── 0007_student_delete_yosh.py │ ├── 0001_initial.py │ ├── 0004_user_delete_odam.py │ ├── 0002_remove_user_bio_remove_user_databio_remove_user_img_and_more.py │ └── 0010_rename_ism_student_bio_remove_student_kurs_and_more.py ├── admin.py ├── models.py ├── tests.py ├── __pycache__ │ ├── apps.cpython-310.pyc │ ├── urls.cpython-310.pyc │ ├── admin.cpython-310.pyc │ ├── models.cpython-310.pyc │ ├── views.cpython-310.pyc │ └── __init__.cpython-310.pyc ├── apps.py ├── urls.py ├── views.py └── templates │ ├── barss.html │ ├── index.html │ ├── user.html │ └── bars.html ├── Authentication ├── forms.py ├── __init__.py ├── migrations │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── 0001_initial.cpython-310.pyc │ │ ├── 0003_initial.cpython-310.pyc │ │ ├── 0005_initial.cpython-310.pyc │ │ ├── 0004_delete_student.cpython-310.pyc │ │ └── 0002_delete_customuser.cpython-310.pyc │ └── 0001_initial.py ├── admin.py ├── tests.py ├── __pycache__ │ ├── apps.cpython-310.pyc │ ├── urls.cpython-310.pyc │ ├── admin.cpython-310.pyc │ ├── forms.cpython-310.pyc │ ├── models.cpython-310.pyc │ ├── views.cpython-310.pyc │ └── __init__.cpython-310.pyc ├── apps.py ├── templates │ ├── code.html │ ├── phone.html │ ├── login.html │ └── register.html ├── urls.py ├── views.py └── models.py ├── beckend ├── __init__.py ├── __pycache__ │ ├── urls.cpython-310.pyc │ ├── wsgi.cpython-310.pyc │ ├── __init__.cpython-310.pyc │ └── settings.cpython-310.pyc ├── wsgi.py ├── urls.py ├── asgi.py └── settings.py ├── db.sqlite3 ├── static └── img │ ├── 1.png │ ├── IT.png │ ├── qr.png │ ├── 16xona.png │ ├── abduhalil.jpg │ ├── abdurahim.jpg │ ├── jasurbek.png │ ├── telegram.png │ ├── shukrulloh-aka.png │ ├── icons8-columns-48.png │ └── icons8-columns-48 (1).png ├── media └── users │ ├── 16xona.png │ ├── abduhalil.jpg │ ├── abdurahim.jpg │ ├── shukrulloh-aka.png │ ├── abdurahim_6Ugf6MB.jpg │ ├── abdurahim_Q9tVdrA.jpg │ ├── abdurahim_YkoCdkO.jpg │ └── icons8-columns-48_1.png └── manage.py /fronend/urls: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Authentication/forms.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beckend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fronend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Authentication/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fronend/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Authentication/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fronend/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin -------------------------------------------------------------------------------- /fronend/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | -------------------------------------------------------------------------------- /fronend/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | -------------------------------------------------------------------------------- /Authentication/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /Authentication/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /static/img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/static/img/1.png -------------------------------------------------------------------------------- /static/img/IT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/static/img/IT.png -------------------------------------------------------------------------------- /static/img/qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/static/img/qr.png -------------------------------------------------------------------------------- /media/users/16xona.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/media/users/16xona.png -------------------------------------------------------------------------------- /static/img/16xona.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/static/img/16xona.png -------------------------------------------------------------------------------- /media/users/abduhalil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/media/users/abduhalil.jpg -------------------------------------------------------------------------------- /media/users/abdurahim.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/media/users/abdurahim.jpg -------------------------------------------------------------------------------- /static/img/abduhalil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/static/img/abduhalil.jpg -------------------------------------------------------------------------------- /static/img/abdurahim.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/static/img/abdurahim.jpg -------------------------------------------------------------------------------- /static/img/jasurbek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/static/img/jasurbek.png -------------------------------------------------------------------------------- /static/img/telegram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/static/img/telegram.png -------------------------------------------------------------------------------- /media/users/shukrulloh-aka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/media/users/shukrulloh-aka.png -------------------------------------------------------------------------------- /static/img/shukrulloh-aka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/static/img/shukrulloh-aka.png -------------------------------------------------------------------------------- /static/img/icons8-columns-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/static/img/icons8-columns-48.png -------------------------------------------------------------------------------- /media/users/abdurahim_6Ugf6MB.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/media/users/abdurahim_6Ugf6MB.jpg -------------------------------------------------------------------------------- /media/users/abdurahim_Q9tVdrA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/media/users/abdurahim_Q9tVdrA.jpg -------------------------------------------------------------------------------- /media/users/abdurahim_YkoCdkO.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/media/users/abdurahim_YkoCdkO.jpg -------------------------------------------------------------------------------- /media/users/icons8-columns-48_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/media/users/icons8-columns-48_1.png -------------------------------------------------------------------------------- /static/img/icons8-columns-48 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/static/img/icons8-columns-48 (1).png -------------------------------------------------------------------------------- /beckend/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/beckend/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /beckend/__pycache__/wsgi.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/beckend/__pycache__/wsgi.cpython-310.pyc -------------------------------------------------------------------------------- /fronend/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/fronend/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /fronend/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/fronend/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /fronend/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/fronend/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /fronend/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/fronend/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /fronend/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/fronend/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /beckend/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/beckend/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /beckend/__pycache__/settings.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/beckend/__pycache__/settings.cpython-310.pyc -------------------------------------------------------------------------------- /fronend/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/fronend/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /Authentication/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/Authentication/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /Authentication/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/Authentication/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /Authentication/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/Authentication/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /Authentication/__pycache__/forms.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/Authentication/__pycache__/forms.cpython-310.pyc -------------------------------------------------------------------------------- /Authentication/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/Authentication/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /Authentication/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/Authentication/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /Authentication/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/Authentication/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /fronend/migrations/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/fronend/migrations/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /fronend/migrations/__pycache__/0001_initial.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/fronend/migrations/__pycache__/0001_initial.cpython-310.pyc -------------------------------------------------------------------------------- /fronend/migrations/__pycache__/0009_initial.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/fronend/migrations/__pycache__/0009_initial.cpython-310.pyc -------------------------------------------------------------------------------- /Authentication/migrations/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/Authentication/migrations/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /fronend/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FronendConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'fronend' 7 | -------------------------------------------------------------------------------- /fronend/migrations/__pycache__/0006_yosh_ism1.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/fronend/migrations/__pycache__/0006_yosh_ism1.cpython-310.pyc -------------------------------------------------------------------------------- /fronend/migrations/__pycache__/0014_delete_odam.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/fronend/migrations/__pycache__/0014_delete_odam.cpython-310.pyc -------------------------------------------------------------------------------- /Authentication/migrations/__pycache__/0001_initial.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/Authentication/migrations/__pycache__/0001_initial.cpython-310.pyc -------------------------------------------------------------------------------- /Authentication/migrations/__pycache__/0003_initial.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/Authentication/migrations/__pycache__/0003_initial.cpython-310.pyc -------------------------------------------------------------------------------- /Authentication/migrations/__pycache__/0005_initial.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/Authentication/migrations/__pycache__/0005_initial.cpython-310.pyc -------------------------------------------------------------------------------- /fronend/migrations/__pycache__/0008_delete_student.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/fronend/migrations/__pycache__/0008_delete_student.cpython-310.pyc -------------------------------------------------------------------------------- /fronend/migrations/__pycache__/0003_rename_user_odam.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/fronend/migrations/__pycache__/0003_rename_user_odam.cpython-310.pyc -------------------------------------------------------------------------------- /fronend/migrations/__pycache__/0004_user_delete_odam.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/fronend/migrations/__pycache__/0004_user_delete_odam.cpython-310.pyc -------------------------------------------------------------------------------- /fronend/migrations/__pycache__/0005_yosh_delete_user.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/fronend/migrations/__pycache__/0005_yosh_delete_user.cpython-310.pyc -------------------------------------------------------------------------------- /fronend/migrations/__pycache__/0011_remove_student_img.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/fronend/migrations/__pycache__/0011_remove_student_img.cpython-310.pyc -------------------------------------------------------------------------------- /fronend/migrations/__pycache__/0013_rename_user_odam.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/fronend/migrations/__pycache__/0013_rename_user_odam.cpython-310.pyc -------------------------------------------------------------------------------- /Authentication/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class AuthenticationConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'Authentication' 7 | -------------------------------------------------------------------------------- /fronend/migrations/__pycache__/0007_student_delete_yosh.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/fronend/migrations/__pycache__/0007_student_delete_yosh.cpython-310.pyc -------------------------------------------------------------------------------- /fronend/migrations/__pycache__/0012_rename_student_user.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/fronend/migrations/__pycache__/0012_rename_student_user.cpython-310.pyc -------------------------------------------------------------------------------- /Authentication/migrations/__pycache__/0004_delete_student.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/Authentication/migrations/__pycache__/0004_delete_student.cpython-310.pyc -------------------------------------------------------------------------------- /Authentication/migrations/__pycache__/0002_delete_customuser.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumoyunMamasodiqov/Telegram/HEAD/Authentication/migrations/__pycache__/0002_delete_customuser.cpython-310.pyc -------------------------------------------------------------------------------- /Authentication/templates/code.html: -------------------------------------------------------------------------------- 1 |
20 | 45 | Проверьте код страны и введите свой номер телефона. 46 |
47 | 48 | 49 |
75 |
79 |
838 | last seen today at 16:24
843 |Mobile
855 |+998 93 332 03 35
856 |Bio
859 |9 okt 2009 {16}
860 |Username
863 |@xumoyun731
864 |Date of birth
867 |Jul 7, 2009 (16 years old)
868 |873 | Story Archive 2 874 |
875 |