add styling and turn off debug

This commit is contained in:
Daniel Cronin 2024-10-21 19:38:42 -05:00
parent d3dcc886f6
commit a1f61e04db
3 changed files with 12 additions and 1 deletions

2
.gitignore vendored
View File

@ -1 +1,3 @@
.idea/*
.venv/*
__pycache__/

View File

@ -23,7 +23,7 @@ BASE_DIR = Path(__file__).resolve().parent.parent
SECRET_KEY = 'django-insecure-7a1kzhkmr)ioatvs#n77lg_gp^s42!qqdnot7vvj*(oc1$lor8'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
DEBUG = False
ALLOWED_HOSTS = ['*']

View File

@ -5,6 +5,15 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://www.w3schools.com/lib/w3-theme-black.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
html,body,h1,h2,h3,h4,h5,h6,form {padding: 15px; margin: auto; font-size: 18px; font-family: "Roboto", sans-serif; background-color: #1e2129; color: #bdbfc4;}
strong {color: #02bcbf;}
</style>
</head>
<body>