Skip to content

Commit

Permalink
added the style script
Browse files Browse the repository at this point in the history
  • Loading branch information
PnBafon committed Apr 12, 2024
1 parent 19830f0 commit 6da8b77
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions chat/static/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
body{
background-color: red;
}
2 changes: 2 additions & 0 deletions chat/templates/index.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
{%load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chat</title>
<link rel="stylesheet" href="{% static 'index.css' %}">
</head>
<body>
{% block content %}
Expand Down
Binary file modified chat_app/__pycache__/settings.cpython-311.pyc
Binary file not shown.
3 changes: 2 additions & 1 deletion chat_app/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,4 +125,5 @@
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'


ASGI_APPLICATION = "chat_app.asgi.application"
ASGI_APPLICATION = "chat_app.asgi.application"

0 comments on commit 6da8b77

Please sign in to comment.