* Create a minimalistic toast
authorGreg Burri <greg.burri@gmail.com>
Wed, 4 Dec 2024 16:39:56 +0000 (17:39 +0100)
committerGreg Burri <greg.burri@gmail.com>
Wed, 4 Dec 2024 16:39:56 +0000 (17:39 +0100)
commit1c79cc890db3a1833e829164e14ea49831897c29
tree421973053212a3b25cbf7fc4cb82a03f2ad8e91e
parent327b2d0a5b115666afae557ffe5a3883c4bde299
* Create a minimalistic toast
* Profile editing (WIP)
25 files changed:
Cargo.lock
backend/build.rs
backend/scss/style.scss [new file with mode: 0644]
backend/scss/toast.scss [new file with mode: 0644]
backend/src/html_templates.rs [new file with mode: 0644]
backend/src/main.rs
backend/src/ron_extractor.rs
backend/src/ron_utils.rs [new file with mode: 0644]
backend/src/services.rs
backend/src/services/ron.rs
backend/style.scss [deleted file]
backend/templates/base.html
backend/templates/base_with_list.html
backend/templates/message.html
backend/templates/message_without_user.html [deleted file]
backend/templates/profile.html
backend/templates/sign_in_form.html
backend/templates/sign_up_form.html
common/Cargo.toml
common/src/ron_api.rs
frontend/Cargo.toml
frontend/src/handles.rs
frontend/src/lib.rs
frontend/src/toast.rs [new file with mode: 0644]
frontend/src/utils.rs