From 3ae7d17064d031c9fe53419293eeba8f96ee4ffb Mon Sep 17 00:00:00 2001 From: Aaron Barbas Date: Sun, 21 Jul 2024 13:24:09 -0500 Subject: [PATCH] Creating Repo --- AzerothcoreAccountCreation/manage.py | 22 ++++++++++++++++++++++ README.md | 0 config.json | 7 +++++++ main.py | 1 + scripts/createAccount.py | 0 scripts/resetPassword.py | 0 styles/style.css | 0 templates/accountcreation.html | 27 +++++++++++++++++++++++++++ templates/resetpassword.html | 0 9 files changed, 57 insertions(+) create mode 100755 AzerothcoreAccountCreation/manage.py create mode 100644 README.md create mode 100644 config.json create mode 100644 main.py create mode 100644 scripts/createAccount.py create mode 100644 scripts/resetPassword.py create mode 100644 styles/style.css create mode 100644 templates/accountcreation.html create mode 100644 templates/resetpassword.html diff --git a/AzerothcoreAccountCreation/manage.py b/AzerothcoreAccountCreation/manage.py new file mode 100755 index 0000000..580afdf --- /dev/null +++ b/AzerothcoreAccountCreation/manage.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python +"""Django's command-line utility for administrative tasks.""" +import os +import sys + + +def main(): + """Run administrative tasks.""" + os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'AzerothcoreAccountCreation.settings') + try: + from django.core.management import execute_from_command_line + except ImportError as exc: + raise ImportError( + "Couldn't import Django. Are you sure it's installed and " + "available on your PYTHONPATH environment variable? Did you " + "forget to activate a virtual environment?" + ) from exc + execute_from_command_line(sys.argv) + + +if __name__ == '__main__': + main() diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/config.json b/config.json new file mode 100644 index 0000000..265d9e9 --- /dev/null +++ b/config.json @@ -0,0 +1,7 @@ +{ + "USERNAME" : "acore", + "PASSWORD" : "password", + "SERVER_IP" : "127.0.01", + "MYSQL_PORT" : 3306 + +} \ No newline at end of file diff --git a/main.py b/main.py new file mode 100644 index 0000000..f7696e9 --- /dev/null +++ b/main.py @@ -0,0 +1 @@ +import flask diff --git a/scripts/createAccount.py b/scripts/createAccount.py new file mode 100644 index 0000000..e69de29 diff --git a/scripts/resetPassword.py b/scripts/resetPassword.py new file mode 100644 index 0000000..e69de29 diff --git a/styles/style.css b/styles/style.css new file mode 100644 index 0000000..e69de29 diff --git a/templates/accountcreation.html b/templates/accountcreation.html new file mode 100644 index 0000000..6c40fc5 --- /dev/null +++ b/templates/accountcreation.html @@ -0,0 +1,27 @@ + + + + + + Azerothcore Account Creator + + +

Account Creation

+
+
+
+
+
+
+
+
+

+ +
+ + + \ No newline at end of file diff --git a/templates/resetpassword.html b/templates/resetpassword.html new file mode 100644 index 0000000..e69de29