Compare commits
3 Commits
1fb74fae1c
...
68f8e56b1d
Author | SHA1 | Date |
---|---|---|
Sage Vaillancourt | 68f8e56b1d | |
Sage Vaillancourt | 1bf98e9b86 | |
Sage Vaillancourt | 01e15f7227 |
|
@ -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))
|
||||
}
|
||||
|
||||
|
|
|
@ -19,6 +19,10 @@ input {
|
|||
font-size: 125%;
|
||||
}
|
||||
|
||||
button {
|
||||
font-size: 125%;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #00B7FF;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue