From 061959cf6f45678407fc497af8610bc9d2ad5d5c Mon Sep 17 00:00:00 2001 From: Karl Hudgell Date: Sat, 2 Nov 2024 17:06:56 +0000 Subject: [PATCH] initial commit --- lib/__pycache__/reqs.cpython-310.pyc | Bin 0 -> 988 bytes static/styles.css | 27 +++++++ templates/index.html | 47 +++++++++++ templates/urls.html | 63 +++++++++++++++ templates/user_accounts.html | 114 +++++++++++++++++++++++++++ 5 files changed, 251 insertions(+) create mode 100644 lib/__pycache__/reqs.cpython-310.pyc create mode 100644 static/styles.css create mode 100644 templates/index.html create mode 100644 templates/urls.html create mode 100644 templates/user_accounts.html diff --git a/lib/__pycache__/reqs.cpython-310.pyc b/lib/__pycache__/reqs.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2cc4f9baea60a754af1aec9c1c54dc56c4922ab1 GIT binary patch literal 988 zcmb7DOHUL*5bmDodGJ^Sd_;{04??mBb}{OO5F@ZEhR8)QaWZ7nZa2%o%+Ao=qp+F1 zdG!|Z>RJ0w=2mqIjf}{(7pqrt9nas`Ex;lE8TKX0gBM67ma;>w|&u3a0J= z2qI`oqRW*=6l^DTGAD8<5w3IvlWd;}Px#+hsCaV!+k#VD({cz|_wH1Rc?Yj2z(zw<15tPbZ-x*N{UhSVb$ha)kGt zjhJ!9Zp9AS8Rqo2hc6C{DOTF;FNJO$Eq%>ZDq5Lrl}9VjmY1Kl`_k-csn&YEyc`(a z)<#L5Y1>!>X1Pj++$8zn!e8e)={>gY+t)kijtveZ7gA}<;3~Z7*-**jQfi}ZaP?)` zq0R@^OLHzD&d3wf^c0kuShrNE4GMmWdujq*@V_qdftKe)-3G_S`o>C(#B{vHRodDt zMPH_A+{t@oCV^cwegS?z=cmKF7d7w~A96!sWVdh!~ zX6U>#P1Rj6|EqWaj=vR;z_@wEM_%Q1$llDzH{RHL|xQ03ixHW)Jk2#9f+`Vb-h8f?p1)s zb87fk_>exNjH>&v1KDb(HOZQq3q&kS6If86I_g>$>3RkmSl&O4)Z>E+uBq5!q I^X|RLKeS8nU;qFB literal 0 HcmV?d00001 diff --git a/static/styles.css b/static/styles.css new file mode 100644 index 0000000..c3f7a7b --- /dev/null +++ b/static/styles.css @@ -0,0 +1,27 @@ +/* Base styles */ +body { + font-family: Arial, sans-serif; + margin: 0; + padding: 0; +} + +header { + background-color: #4CAF50; + color: white; + padding: 1em; + text-align: center; +} + +main { + padding: 1em; +} + +/* Mobile styles */ +@media (max-width: 600px) { + header { + font-size: 1.5em; + } + main { + padding: 0.5em; + } +} diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..75cede2 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,47 @@ + + + + + + + KTV Manager + + + + + + + + +
+

Welcome to KTV Manager

+ +
+ +
+

© 2024 KTV Manager | All rights reserved

+
+ + + + + + diff --git a/templates/urls.html b/templates/urls.html new file mode 100644 index 0000000..d4caacc --- /dev/null +++ b/templates/urls.html @@ -0,0 +1,63 @@ + + + + + + + URLs List + + + + + + + + + +
+

URLs

+ + + + + + + + + {% for url in urls %} + + + + + {% endfor %} + +
#URL
{{ loop.index }}{{ url }}
+
+ +
+

© 2024 My Site | All rights reserved

+
+ + + + + + diff --git a/templates/user_accounts.html b/templates/user_accounts.html new file mode 100644 index 0000000..7415f62 --- /dev/null +++ b/templates/user_accounts.html @@ -0,0 +1,114 @@ + + + + + + + User Accounts + + + + + + + + + + +
+

User Accounts

+ + + + + + + + + + + + + {% for account in user_accounts %} + + + + + + + + + {% endfor %} + +
#UsernameStreamStream URLExpiry DatePassword
{{ loop.index }}{{ account.username }}{{ account.stream }}{{ account.streamURL }}{{ account.expiaryDate }} + ******** +
+
+ +
+

© 2024 My Site | All rights reserved

+
+ + + + + + + +