diff options
author | Michael McVady <michaelm@telnyx.com> | 2024-01-29 19:50:10 -0600 |
---|---|---|
committer | Michael McVady <michaelm@telnyx.com> | 2024-01-29 19:50:10 -0600 |
commit | 62c313996536cb88a3ea09f4344cb2bdaa5cacca (patch) | |
tree | 286831eec8bead742265bae1fd2aaa5d9143bab9 /app.py | |
parent | 69c300dd4b84874944f58b7a5f764fc5af896dba (diff) |
Fix HTML
Diffstat (limited to 'app.py')
-rw-r--r-- | app.py | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -16,6 +16,9 @@ lifxlan = LifxLAN() DEFAULT_COLOR = "#FF0000" TEMPLATE_STR = """<!DOCTYPE html> <html> +<head> +<title>lux</title> +</head> <body style="background-color: {{ color }}"> <h1>{{ message }}</h1> </body> @@ -61,7 +64,7 @@ async def get_index() -> Template: ) return Template( - template_str=TEMPLATE_STR, context={"color": rgb_hex, "message": ""} + template_str=TEMPLATE_STR, context={"color": rgb_hex, "message": " "} ) |