From 0ea64157c85156c4a3404fd11c6fb687f5eb613d Mon Sep 17 00:00:00 2001 From: moderndevslulw Date: Fri, 4 Jul 2025 17:55:31 +0500 Subject: initial commit --- .gitignore | 1 + LICENSE | 13 +++++++++++++ README.md | 3 +++ public/index.php | 16 ++++++++++++++++ public/static/style.css | 4 ++++ 5 files changed, 37 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README.md create mode 100644 public/index.php create mode 100644 public/static/style.css diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4e9b47a --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +config.php \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..327a517 --- /dev/null +++ b/LICENSE @@ -0,0 +1,13 @@ + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + +Copyright (C) 2025 moderndevsLULW + +Everyone is permitted to copy and distribute verbatim or modified +copies of this license document, and changing it is allowed as long +as the name is changed. + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE FUCK YOU WANT TO. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..9b3a8a9 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# ![](/logo.png) tinybot (www) + +a web frontend for the Tinybot Project. \ No newline at end of file diff --git a/public/index.php b/public/index.php new file mode 100644 index 0000000..ca7f117 --- /dev/null +++ b/public/index.php @@ -0,0 +1,16 @@ + + + + The Tinybot Project + + + + + + +
+

test

+
+ + + \ No newline at end of file diff --git a/public/static/style.css b/public/static/style.css new file mode 100644 index 0000000..a068d89 --- /dev/null +++ b/public/static/style.css @@ -0,0 +1,4 @@ +* { + padding: 0; + margin: 0; +} \ No newline at end of file -- cgit v1.2.3