diff options
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"; |