You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.5 KiB
37 lines
1.5 KiB
|
|
# Color pallette of kynsight
|
|
black = "#191717"
|
|
white = "#f1f1f1"
|
|
light_blue = "#9bd7d1"
|
|
dark_blue = "#305d7a"
|
|
light_orange = "#f9a36c"
|
|
orange = "#f26628"
|
|
yellow = "#f8cb66"
|
|
|
|
class form:
|
|
div_style = "background-color:" + dark_blue
|
|
div_class = "p-5"
|
|
div_error_class = "invalid-feedback"
|
|
label_class = "col-form-label"
|
|
label_style = "color:" + orange + "; font-size: 14pt; font-weight: bold;"
|
|
submit_class = "btn btn-outline-info"
|
|
submit_style = ""
|
|
input_error_class = "form-control form-control-lg is-invalid"
|
|
input_class = "form-control form-control-lg"
|
|
|
|
class menu:
|
|
navbar_items = [
|
|
{"text": "Homepage", "url": "main.index", "global": 1, "user":0, "admin": 0},
|
|
{"text": "Client", "url": "main.index", "global": 1, "user":0, "admin": 0},
|
|
{"text": "Login", "url": "user.login", "global": 0, "user":1, "admin": 0},
|
|
{"text": "Register", "url": "user.register", "global": 0, "user":1, "admin": 0},
|
|
{
|
|
"text": "Admin", "global": 0, "user":0, "admin": 1,
|
|
"sublinks": [
|
|
{"text": "Create", "url": "main.index", "global": 0, "user":0, "admin": 1},
|
|
{"text": "Delete", "url": "main.index", "global": 0, "user":0, "admin": 1},
|
|
],
|
|
},
|
|
# {'text':'Github','url':'https://github.com/'}
|
|
]
|