running in dev mode

This commit is contained in:
Daniel Cronin 2024-10-21 23:46:06 -05:00
parent a1f61e04db
commit 74b9afc9da
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
from django import forms
class Statement(forms.Form):
input = forms.CharField(widget=forms.TextInput(attrs={'size':100}), required=True)
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>