From c588fa15cce9765edc890ce2d557e0026c28d43c Mon Sep 17 00:00:00 2001 From: root Date: Wed, 17 Apr 2019 01:07:26 -0400 Subject: [PATCH 1/3] test commit --- clayton-testfile | 1 + 1 file changed, 1 insertion(+) create mode 100644 clayton-testfile diff --git a/clayton-testfile b/clayton-testfile new file mode 100644 index 0000000..d9f5a62 --- /dev/null +++ b/clayton-testfile @@ -0,0 +1 @@ +this is a test file for commit From 7a91f187bbe5eeabb2f217543f1857797a524f5b Mon Sep 17 00:00:00 2001 From: root Date: Wed, 17 Apr 2019 20:56:03 -0400 Subject: [PATCH 2/3] Removed test file --- clayton-testfile | 1 - 1 file changed, 1 deletion(-) delete mode 100644 clayton-testfile diff --git a/clayton-testfile b/clayton-testfile deleted file mode 100644 index d9f5a62..0000000 --- a/clayton-testfile +++ /dev/null @@ -1 +0,0 @@ -this is a test file for commit From 974ec9b65586ff3854f94dc23a289bbfb71613d0 Mon Sep 17 00:00:00 2001 From: Ubuntu Date: Thu, 18 Apr 2019 00:18:00 -0400 Subject: [PATCH 3/3] Titlebar for index.php completed --- .gitignore | 0 .htaccess | 0 README.md | 0 index.php | 27 ++++++++++++--------------- main.css | 34 ++++++++++++++++++++++++++++++++++ old_index.html | 0 6 files changed, 46 insertions(+), 15 deletions(-) mode change 100644 => 100755 .gitignore mode change 100644 => 100755 .htaccess mode change 100644 => 100755 README.md mode change 100644 => 100755 index.php create mode 100755 main.css mode change 100644 => 100755 old_index.html diff --git a/.gitignore b/.gitignore old mode 100644 new mode 100755 diff --git a/.htaccess b/.htaccess old mode 100644 new mode 100755 diff --git a/README.md b/README.md old mode 100644 new mode 100755 diff --git a/index.php b/index.php old mode 100644 new mode 100755 index 9e25423..0f45309 --- a/index.php +++ b/index.php @@ -1,23 +1,20 @@ - PHP Test + FightHub - Home + - Hello World

'; +
+

FightHub

+ + +
- // In the variables section below, replace user and password with your own MySQL credentials as created on your server - $servername = "localhost"; - $username = "fighthubuser"; - $password = "cC33dC8W"; - // Create MySQL connection - $conn = mysqli_connect($servername, $username, $password); - // Check connection - if it fails, output will include the error message - if (!$conn) { - die('

Connection failed:

' . mysqli_connect_error()); - } - echo '

Connected successfully

'; - ?> - + + + + + diff --git a/main.css b/main.css new file mode 100755 index 0000000..646afb1 --- /dev/null +++ b/main.css @@ -0,0 +1,34 @@ +body { + background-color: #1E1E1E; +} + + +form { + width: 100%; + height: 150px; + /* border: black solid 1px; */ + border-bottom: #727272 solid 2px; + +} + +.title-text { + float: left; + margin-top: 28px; + padding-right: 20px; + color: #FF3D53; + font-family: "Calibri"; + font-size: 50pt; +} +.search { + width: 60%; + padding: 10px; + font-size: 20px; + margin-top: 45px; +} + +.submit { + width: 150px; + padding: 10px; + font-size: 20px; + /* float: left; */ +} \ No newline at end of file diff --git a/old_index.html b/old_index.html old mode 100644 new mode 100755