Compare commits

...

3 Commits

2 changed files with 5 additions and 1 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,6 +19,10 @@ input {
font-size: 125%;
}
button {
font-size: 125%;
}
a {
color: #00B7FF;
}