running in dev mode

This commit is contained in:
Daniel Cronin 2024-10-21 23:46:06 -05:00
parent 95a681edeb
commit 428da090a6
2 changed files with 5 additions and 1 deletions

View File

@ -0,0 +1,4 @@
from django import forms
class Statement(forms.Form):
input = forms.CharField(required=True)

View File

@ -11,7 +11,7 @@
<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;}
html,body,h1,h2,h3,h4,h5,h6,form {width: 100%; padding: 15px; margin: auto; font-size: 18px; font-family: "Roboto", sans-serif; background-color: #1e2129; color: #bdbfc4;}
strong {color: #02bcbf;}
</style>
</head>