Compare commits

..

No commits in common. "68f8e56b1d72c320386b74f72ead61c919748642" and "1fb74fae1c250b3aa3b1b98113f2e88d1b9d2d65" have entirely different histories.

2 changed files with 1 additions and 5 deletions

View File

@ -57,7 +57,7 @@ fn message<'r>(message: Form<MessagePost<'r>>) -> Result<RawHtml<String>, std::i
.open("messages.log")
.unwrap();
let now = Local::now();
writeln!(&mut file, "{} {}", now.format("[%Y-%m-%d %H:%M:%S]"), message.message)?;
writeln!(&mut file, "{}, {}", now.format("[%Y-%m-%d, %H:%M:%S]"), message.message)?;
Ok(get(true))
}

View File

@ -19,10 +19,6 @@ input {
font-size: 125%;
}
button {
font-size: 125%;
}
a {
color: #00B7FF;
}