diff options
author | Adam T. Carpenter <atc@53hor.net> | 2021-04-02 18:23:45 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2021-04-02 18:23:45 -0400 |
commit | b1c45640a72300433800c8370657335616f8c541 (patch) | |
tree | ad7df1bfa6f59390ad227183364b308ab2137ed0 /src/templates | |
parent | 7633bf5855ae5359d0fe280970e5c5c210c536b3 (diff) | |
download | twinh-b1c45640a72300433800c8370657335616f8c541.tar.xz twinh-b1c45640a72300433800c8370657335616f8c541.zip |
replaced mongo with sled, added some basic functional google oauth2 code
Diffstat (limited to 'src/templates')
-rw-r--r-- | src/templates/mod.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/templates/mod.rs b/src/templates/mod.rs index 1a594fb..3a6eb2b 100644 --- a/src/templates/mod.rs +++ b/src/templates/mod.rs @@ -1 +1,9 @@ pub static INDEX_T: &str = include_str!("index.html"); +pub static LOGIN_T: &str = include_str!("login.html"); +pub const CATALOG_L: &str = "/#menu"; +pub const PARTS_L: &str = "/parts"; +pub const PARTS_CSV_L: &str = "/parts.csv"; +pub const CARS_L: &str = "/cars"; +pub const CARS_CSV_L: &str = "/cars.csv"; +pub const SUGGESTIONS_L: &str = "/suggestions"; +pub const LOGIN_L: &str = "/login"; |