Add chat form that sends messages to Flask server

This commit is contained in:
2017-12-02 01:36:44 -05:00
parent b3e6a15142
commit 71bed5ab17
5 changed files with 151 additions and 2 deletions

View File

@@ -81,3 +81,52 @@ ol li code {
max-height: 600px;
overflow: scroll;
}
#say-header {
margin-top: 15px;
margin-bottom: 10px;
}
#say-form {
border: 1px dashed darkgray;
padding: 10px;
}
#say-form label {
width: 100%;
}
#say-form, #say-send {
margin-top: 5px;
}
#say-username, #say-text {
margin-bottom: 5px;
margin-right: 5px;
}
#say-text {
width: 100%;
}
#say-dnf {
position: absolute;
left: -2000px;
}
#say-sending {
display: none;
}
#say-error {
color: darkred;
}
#say-success {
display: none;
}
#say-notice {
margin-top: 5px;
margin-bottom: 0;
}