From 0e728eae0e054bff732503713005e944f83e3329 Mon Sep 17 00:00:00 2001 From: Halbear Date: Tue, 3 Mar 2026 08:13:51 +0000 Subject: [PATCH] Created Landing Page, Revamped account system, added account sessions and password obfuscation(not being pushed to the public branch) revamping main site bit by bit --- .gitignore | 3 + Account.php | 3 + AccountApps/AccountManager.html | 4 +- AccountCentre/AccountCentre.css | 217 ++++++++++++++++ AccountCentre/AccountCentre.php | 1 + AccountCentre/AccountCentreHotbar.php | 45 ++++ AccountCentre/AccountOverview.php | 3 + AccountCentre/AccountWindow.css | 222 ++++++++++++++++ AccountCentre/DragAccountWindows.js | 71 ++++++ AccountCentre/LogInForm.php | 46 ++++ AccountCentre/Logo.png | Bin 0 -> 6513 bytes AccountCentre/SignUpForm.php | 47 ++++ AppAssets/App.html | 6 +- AppAssets/AppFullscreen.html | 16 ++ Artwork.php | 3 + ArtworkApps/MelonaArameIcon.html | 2 +- ArtworkApps/WhateverBoardApp.html | 3 + ArtworkApps/WhateverBoardAppIcon.html | 3 + Contact.php | 3 + Forum.php | 14 +- ForumApps/ForumApp.html | 3 + ForumApps/ForumAppIcon.html | 3 + ForumApps/LoggedOut.html | 8 + ForumApps/LoggedOutIcon.html | 3 + ForumApps/NothingHere.html | 3 - ForumApps/NothingHereIcon.html | 3 - ForumWindow.php | 21 ++ GeneralAssets/ButtonPreset.png | Bin 0 -> 314 bytes GeneralAssets/ForumIcon.png | Bin 0 -> 897 bytes GeneralAssets/ForumsIcon.png | Bin 0 -> 1767 bytes GeneralAssets/FullScreenButton.png | Bin 0 -> 359 bytes GeneralAssets/FulscreenButtonHover.png | Bin 0 -> 282 bytes HalbearNetLanding/Assets/Art.png | Bin 0 -> 208976 bytes HalbearNetLanding/Assets/GameDev.png | Bin 0 -> 481256 bytes HalbearNetLanding/Assets/Logo.png | Bin 0 -> 6513 bytes HalbearNetLanding/Assets/Programming.PNG | Bin 0 -> 312130 bytes HalbearNetLanding/Assets/Software.png | Bin 0 -> 387133 bytes HalbearNetLanding/Assets/SoftwareDev.png | Bin 0 -> 159654 bytes HalbearNetLanding/Assets/TerrainGen1.gif | Bin 0 -> 490853 bytes HalbearNetLanding/Assets/TerrainGen2.gif | Bin 0 -> 386380 bytes HalbearNetLanding/Assets/TerrainGen3.gif | Bin 0 -> 497025 bytes HalbearNetLanding/Assets/chibismug.png | Bin 0 -> 2121 bytes HalbearNetLanding/Assets/halnetmascot.png | Bin 0 -> 40371 bytes HalbearNetLanding/Assets/ihgd.png | Bin 0 -> 82372 bytes HalbearNetLanding/CompanyInformation.php | 40 +++ HalbearNetLanding/Hotbar.php | 15 ++ HalbearNetLanding/StyleSheets/MainStyle.css | 267 ++++++++++++++++++++ HalbearNetLanding/favicon.ico | Bin 0 -> 4286 bytes HalbearNetLanding/index.php | 102 ++++++++ Hotbar.php | 22 +- IndexApps/About.html | 2 +- IndexApps/AboutIcon.html | 2 +- IndexApps/CheckThisOutIcon.html | 2 +- IndexApps/DragMeIcon.html | 2 +- IndexApps/Welcome.html | 4 +- IndexApps/WelcomeIcon.html | 2 +- Software.php | 4 +- SoftwareApps/SoftwareApp.html | 3 + SoftwareApps/SoftwareAppIcon.html | 3 + StoreApps/ComingSoon.html | 8 + StoreApps/ComingSoonIcon.html | 3 + WindowManager.js | 16 +- default.css | 23 ++ index.php | 3 + store.php | 25 ++ 65 files changed, 1269 insertions(+), 35 deletions(-) create mode 100644 AccountCentre/AccountCentre.css create mode 100644 AccountCentre/AccountCentre.php create mode 100644 AccountCentre/AccountCentreHotbar.php create mode 100644 AccountCentre/AccountOverview.php create mode 100644 AccountCentre/AccountWindow.css create mode 100644 AccountCentre/DragAccountWindows.js create mode 100644 AccountCentre/LogInForm.php create mode 100644 AccountCentre/Logo.png create mode 100644 AccountCentre/SignUpForm.php create mode 100644 AppAssets/AppFullscreen.html create mode 100644 ArtworkApps/WhateverBoardApp.html create mode 100644 ArtworkApps/WhateverBoardAppIcon.html create mode 100644 ForumApps/ForumApp.html create mode 100644 ForumApps/ForumAppIcon.html create mode 100644 ForumApps/LoggedOut.html create mode 100644 ForumApps/LoggedOutIcon.html delete mode 100644 ForumApps/NothingHere.html delete mode 100644 ForumApps/NothingHereIcon.html create mode 100644 ForumWindow.php create mode 100644 GeneralAssets/ButtonPreset.png create mode 100644 GeneralAssets/ForumIcon.png create mode 100644 GeneralAssets/ForumsIcon.png create mode 100644 GeneralAssets/FullScreenButton.png create mode 100644 GeneralAssets/FulscreenButtonHover.png create mode 100644 HalbearNetLanding/Assets/Art.png create mode 100644 HalbearNetLanding/Assets/GameDev.png create mode 100644 HalbearNetLanding/Assets/Logo.png create mode 100644 HalbearNetLanding/Assets/Programming.PNG create mode 100644 HalbearNetLanding/Assets/Software.png create mode 100644 HalbearNetLanding/Assets/SoftwareDev.png create mode 100644 HalbearNetLanding/Assets/TerrainGen1.gif create mode 100644 HalbearNetLanding/Assets/TerrainGen2.gif create mode 100644 HalbearNetLanding/Assets/TerrainGen3.gif create mode 100644 HalbearNetLanding/Assets/chibismug.png create mode 100644 HalbearNetLanding/Assets/halnetmascot.png create mode 100644 HalbearNetLanding/Assets/ihgd.png create mode 100644 HalbearNetLanding/CompanyInformation.php create mode 100644 HalbearNetLanding/Hotbar.php create mode 100644 HalbearNetLanding/StyleSheets/MainStyle.css create mode 100644 HalbearNetLanding/favicon.ico create mode 100644 HalbearNetLanding/index.php create mode 100644 SoftwareApps/SoftwareApp.html create mode 100644 SoftwareApps/SoftwareAppIcon.html create mode 100644 StoreApps/ComingSoon.html create mode 100644 StoreApps/ComingSoonIcon.html create mode 100644 store.php diff --git a/.gitignore b/.gitignore index ec2b36c..e4d4d73 100644 --- a/.gitignore +++ b/.gitignore @@ -78,3 +78,6 @@ fabric.properties .idea/caches/build_file_checksums.ser /Secure/ +/Hidden/ +/AccountCentre/AccountActions/ +/AccountCentre/AccountActions/ diff --git a/Account.php b/Account.php index 26f99d8..08e2c5f 100644 --- a/Account.php +++ b/Account.php @@ -1,3 +1,6 @@ + diff --git a/AccountApps/AccountManager.html b/AccountApps/AccountManager.html index 50f38c6..fc652d7 100644 --- a/AccountApps/AccountManager.html +++ b/AccountApps/AccountManager.html @@ -9,7 +9,7 @@ NewAppLoaded.onreadystatechange = function () { if (NewAppLoaded.readyState !== 4) return; if (NewAppLoaded.status !== 200) return; - document.getElementById("AppContainer").insertAdjacentHTML("beforeend", NewAppLoaded.responseText); + document.getElementById("AccountManagerBody").insertAdjacentHTML("beforeend", NewAppLoaded.responseText); }; NewAppLoaded.send(); } else { @@ -18,7 +18,7 @@ NewAppLoaded.onreadystatechange = function () { if (NewAppLoaded.readyState !== 4) return; if (NewAppLoaded.status !== 200) return; - document.getElementById("AppContainer").insertAdjacentHTML("beforeend", NewAppLoaded.responseText); + document.getElementById("AccountManagerBody").insertAdjacentHTML("beforeend", NewAppLoaded.responseText); }; NewAppLoaded.send(); } diff --git a/AccountCentre/AccountCentre.css b/AccountCentre/AccountCentre.css new file mode 100644 index 0000000..0dbd6f5 --- /dev/null +++ b/AccountCentre/AccountCentre.css @@ -0,0 +1,217 @@ +body{ + background-image: linear-gradient(to bottom,#245a80 10vh,transparent 90vh ), linear-gradient(to bottom right, #063657,#031d2e ); + background-size: cover; + background-repeat: no-repeat; + margin: 0; + padding: 0; + height: 100vh; +} +.HotbarWrapper{ + overflow-x: clip; + transition: 0.5s; + width: 100vw; + height: 9vh; + display: flex; + justify-content: space-between; + align-items: center; + align-content: center; + box-shadow: #121e29 0 0 5vh; + background-image: linear-gradient(to bottom,rgba(52, 184, 254,0.3) ,rgba(52, 184, 254,0.5),rgba(22, 144, 254,0.25),rgba(12, 64, 124,0.5)); + border-bottom: #8cefff 0.3vh solid; +} +.Logo{ + margin-left:1vh; + transition: 0.25s; + padding-right:1vh; + background-image: url("Logo.png"); + background-repeat: no-repeat; + background-size: contain; + width: 8vh; + height:8vh; + } +.ErrorMessageWrapper{ + display: flex; + position: absolute; + justify-content: center; + align-items: center; + align-content: center; + flex-direction: column; + width: 50vw; + height: 50vh; + top: 50vh; + left:50vw; + transform: translate(-50%,-50%); +} +.ErrorMessageImage{ + background-image: url("../GeneralAssets/mascotchibi/chibilost.png"); + background-repeat: no-repeat; + background-size: 15vh; + transition: 0.25s; + min-width: 15vh !important; + min-height: 16.875vh !important; + image-rendering: pixelated; + +} +.ErrorMessage:hover{ + .ErrorMessageImage{ + transform: scale(1); + max-width: 12.86vh !important; + min-height: 17.875vh !important; + background-position-y: 105%; + background-image: url("../GeneralAssets/mascotchibi/chibiquestion.png"); + } +} +.ErrorMessage{ + padding: 2vh; + filter: drop-shadow(0 0.5vh 3vh #8cefff); + border-top: #8cefff 0.3vh solid; + border-left: #8cefff 0.3vh solid; + border-right: rgba(32,120,155,1) 0.3vh solid; + border-bottom: rgba(32,120,155,1) 0.3vh solid; + text-shadow: #223342 0 0 2vh; + background-image:linear-gradient(to bottom right,rgba(100, 124, 254,0.0),rgba(100, 124, 254,0.3) ,rgba(100, 124, 254,0.0),rgba(100, 124, 254,0.0),rgba(100, 124, 254,0.25)), linear-gradient(to bottom,rgba(52, 184, 254,0.4),rgba(52, 184, 254,0.0) ,rgba(52, 184, 254,0.3),rgba(22, 144, 254,0.15),rgba(12, 64, 124,0.25)); + border-radius: 5vh; + display: flex; + align-content: center; + justify-content: center; + align-items: center; + transition: 0.25s; + user-select: none; + font-family: "Arial", serif; + font-weight: bolder; + color:white; + font-size: 4vh; + text-align: center; +} +.LogInButtonWrapper{ + transform: scale(1.5); + margin-top: 5vh; + display: flex; + justify-content: center; + align-items: center; + align-content: center; + flex-direction: row; +} +.HotbarWrapper:hover{ + .Logo{ + height:9vh; + width: 9vh; + } + .Title{ + font-size: 4.5vh; + } + .HotbarButton{ + height: 7vh; + } + .AccountIcon{ + margin-left:1vh; + transition: 0.25s; + margin-right:1vh; + width: 9vh; + height:9vh; + } + height: 12vh; +} +.AccountIcon:hover{ + transform: scale(1.2) translateY(0); + filter: drop-shadow(0 0 2vh #8cefff); + } +.AccountIcon{ + border-style: inset; + border-top: #8cefff 0.5vh solid; + border-left: #8cefff 0.5vh solid; + border-bottom: none; + border-right: none; + filter: drop-shadow(-1vh -1vh 1vh #8cefff); + margin-left:1vh; + transition: 0.25s; + margin-right:1vh; + border-radius: 4vh; + background-image: linear-gradient(to bottom, rgba(100,200,255,0.5), rgba(100,200,255,0.25), rgba(100,200,255,0.15), rgba(100,200,255,0.35)); + width: 8vh; + height:8vh; +} +.Logo:hover{ + transform: scale(1.2) translateY(0); + filter: drop-shadow(0 0 2vh #8cefff); +} +.HotbarButton:hover{ + cursor: pointer; + margin-right: 2vh; + width:22.5vh; + height: 7vh; + filter: drop-shadow(0 0 2vh #8cefff); + transform: scale(1.1) translateY(1%); + border-top: #8cefff 0.3vh solid; + border-left: #8cefff 0.3vh solid; + border-bottom: none; + border-right: none; +} +.HotbarButton{ + border: none; + user-select: none; + transition: 0.25s; + margin-right: 1vh; + margin-left: 1vh; + display: flex; + justify-content: center; + flex-direction: row; + align-content: center; + align-items: center; + font-family: "Arial", serif; + font-weight: bolder; + font-size: 4vh; + width: 20vh; + height: 6vh; + border-radius: 5vh; + color:white; + text-shadow: #8cefff 0vh 0vh 0vh; + background-image: linear-gradient(to bottom, rgba(100,200,255,0.5), rgba(100,200,255,0.25), rgba(100,200,255,0.15), rgba(100,200,255,0.35)); + border-bottom: #8cefff 0.3vh solid; + border-right: #8cefff 0.3vh solid; +} +.HotbarSection{ + display: flex; + justify-content: center; + flex-direction: row; + height: 8vh; + align-content: center; + align-items: center; +} +.Title:hover{ + text-shadow: #8cefff 0vh 0vh 2vh; +} +.FormWindowContainer{ + background: transparent; + width: 100vw; + height: 100vh; + position: absolute; + top: 0; + left: 0; + padding: 0; + margin: 0; + overflow: hidden; + pointer-events: none; +} +.Title{ + transition: 0.25s; + text-shadow: #8cefff 0vh 0vh 0vh; + user-select: none; + font-family: "Arial", serif; + font-weight: bolder; + color:white; + font-size: 4vh; +} +.Copyright{ + border-radius: 5vh; + position: fixed; + left: 0; + bottom: 0; + z-index: 100; + user-select: none; + transition: ease-in-out .3s; + font-family: "Arial", serif; + font-size: 2vh; + text-align: center; + color: white; +} \ No newline at end of file diff --git a/AccountCentre/AccountCentre.php b/AccountCentre/AccountCentre.php new file mode 100644 index 0000000..83c1e8b --- /dev/null +++ b/AccountCentre/AccountCentre.php @@ -0,0 +1 @@ + Halbear.Net setTimeout(()=>{signInForm();},500);"); } $LoggedIn = (isset($_SESSION["logged_in"])) ? $_SESSION["logged_in"] : false; $Page = "AccountCentre"; require_once("../Hidden/Security/PasswordObfsucation.php"); require_once("AccountCentreHotbar.php"); if(!$LoggedIn){ echo("
Uh Oh! looks like you aren't logged in, please log in or sign up to manage your account!
"); } else{ echo("
DisplayName: ".$_SESSION["display_name"]."
UserName: ".$_SESSION["username"]."
"); } ?>
\ No newline at end of file diff --git a/AccountCentre/AccountCentreHotbar.php b/AccountCentre/AccountCentreHotbar.php new file mode 100644 index 0000000..56c0bc0 --- /dev/null +++ b/AccountCentre/AccountCentreHotbar.php @@ -0,0 +1,45 @@ + +
+
+ +
Halbear.Net Account Centre
+
+
+ + + Log Out'; + echo ''; + } else{ + echo ''; + } + ?> +
+
diff --git a/AccountCentre/AccountOverview.php b/AccountCentre/AccountOverview.php new file mode 100644 index 0000000..4eb738e --- /dev/null +++ b/AccountCentre/AccountOverview.php @@ -0,0 +1,3 @@ +
+ +
diff --git a/AccountCentre/AccountWindow.css b/AccountCentre/AccountWindow.css new file mode 100644 index 0000000..f3b4600 --- /dev/null +++ b/AccountCentre/AccountWindow.css @@ -0,0 +1,222 @@ +.windowIcon{ + user-select: none; + z-index: 55 !important; + position: absolute; + transition: 0.0s !important; + width: 9.5vh; + height: 9.5vh; + display: flex; + justify-content: center; + flex-wrap: nowrap; + align-items: center; + flex-direction: column; + border-radius: 5%; +} +Button{ + background: transparent; + border: none; +} +.PopUpWrapper{ + pointer-events: all; + z-index: 100 !important; + display: flex; + justify-content: center; + align-items: center; + align-content: center; + flex-direction: column; + width: 50vw; + height: 85vh; + left: 50vw; + top: 50vh; + position: absolute; + transform: translate(-50%,-50%); +} +.DraggableWrapper{ + pointer-events: all; + z-index: 50; /*!important;*/ + padding: 0; + Position:Absolute; + left: 0; + top: 0; +} +.WindowTitleBar{ + backdrop-filter: blur(2px); + padding-top: 0; + padding-bottom: 0; + padding-left: 2vh; + padding-right: 2vh; + display: flex; + margin: 0; + box-sizing: border-box; + width: 100%; + height: 5vh; + /*z-index: 10;*/ + user-select: none; + justify-content: space-between; + align-items: center; + text-align: center; + cursor:grab; + flex-wrap: nowrap; + background-image: linear-gradient(to bottom, rgba(200,200,255,0.3),rgba(200,200,255,0.1),rgba(200,200,255,0.0),rgba(200,200,255,0.2)); + border: 0.5vh white solid; + border-radius: 2vh; + box-shadow: 0 1vh 1vh #1d4746; +} +.WindowTitleBar:active{ + cursor: grabbing; +} +.ExitButton{ + transition: 0.25s; + background-image: url("../GeneralAssets/ExitButton.png"); +} +.ExitButton:hover{ + transform: scale(1.2); + background-image: url("../GeneralAssets/ExitButtonHover.png"); +} +.MinimiseButton{ + background-image: url("../GeneralAssets/MinimiseButton.png"); + margin-right: 0.25vh; +} +.MinimiseButton:hover{ + background-image: url("../GeneralAssets/MinimiseButtonHover.png"); +} +.appTitleButton{ + background-size: contain; + background-repeat: no-repeat; + height: 3.5vh; + width: 3.5vh; +} +.appTitleButton:hover{ + cursor: pointer; +} +.appTitleButton:active{ + cursor: grabbing; +} +.WindowThumbnail{ + background-size: contain; + background-repeat: no-repeat; + height: 3vh; + width: 3vh; + +} +.WindowTitleBarContainer{ + padding: 0; + margin: 0; + display: flex; + justify-content: left; + align-items: center; + text-align: center; + flex-wrap: nowrap; + height: 100%; +} +.WindowBody{ + justify-content: center; + align-content: start; + align-items: center; + font-family: "Arial", serif; + /*z-index: 5;*/ + box-sizing: border-box; + height: 100%; + width: 100%; + filter: drop-shadow(1vh 1vh 1vh #121e29); + backdrop-filter:brightness(0.9) blur(5px); + text-shadow: #223342 0 0 2vh; + background-image: linear-gradient(to bottom,rgba(22, 184, 224,0.1) ,rgba(22, 184, 224,0.25),rgba(22, 184, 224,0.15),rgba(42, 184, 224,0.05)),linear-gradient(to bottom, rgba(200,200,255,0.5),rgba(200,200,255,0.1),rgba(200,200,255,0.0),rgba(200,200,255,0.2)); + border-radius: 5vh; + display: flex; + flex-wrap: wrap; + box-shadow: 1vh 1vh 1vh #121e29; + padding:1vh; + transition: 0.6s; + margin-bottom: 3vh; +} +.WindowBody.Dragging{ + box-shadow: 2vh 3vh 3vh #121e29; +} +.WindowTitle{ + font-family: "Arial", serif; + font-size: 2.35vh; + color: white; + text-shadow: #0e4044 0.15vh 0.35vh 1vh; + margin-left:0.25vh; +} +.IconText{ + font-family: "Arial", serif; + font-size: 1.35vh !important; + user-select: none; +} +.whiteText{ + text-shadow: #0e4044 0.15vh 0.35vh 1vh; + font-family: "Arial", serif; + color: white; + font-size: 3.35vh; +} +.FormBoxWrapper{ + margin: 3vh; + min-width: 90%; +} +.LoginField{ + min-width: 90%; + min-height:5vh; + padding: 1vh 5vh; + backdrop-filter: blur(15px); + border-radius: 2.5vh; + margin-bottom: 1vh; + display: flex; + justify-content: left; + align-items: center; + align-content: center; +} +.minimised{ + top: 200vh !important; + transition: 0.5s !important; +} +.animationTransition{ + transition: 0.5s !important; +} +.hyperlink:hover{ + transform: scale(1.2); + cursor: pointer; + color: white !important; +} +.hyperlink{ + transition: 0.25s; + color: #8cefff !important; + font-family: "Arial", serif; +} +.ButtonArea{ + align-items: flex-start !important; + margin-top: 5vh; + flex-direction: column; +} +.LogInButton:hover{ + width: 17vw; + transform: scale(1.3) translateY(1vh)!important; +} +input:hover{ + height:5vh; + min-width: 5vh; +} +input{ + transition: 0.25s; + box-shadow: 0 0 1vh #8cefff; + margin-right: 5vh; + transform: scale(1.2); + border: none; + height:3vh; + min-width: 3vh; + border-radius: 1.5vh; + border-bottom: #8cefff 0.5vh solid; + background: transparent !important; + background-image: linear-gradient(to bottom, rgba(25,50,75,0.5), rgba(50,100,155,0.25), rgba(50,100,155,0.15), rgba(50,100,155,0.15)) !important; +} +.showpassword{ + backdrop-filter: none !important; +} +.LogInButton{ + border-radius: 2vh !important; + width: 15vw; + transform: scale(1.2) translateY(1vh); + background: transparent !important; + background-image: linear-gradient(to bottom, rgba(100,200,255,0.5), rgba(100,200,255,0.25), rgba(100,200,255,0.15), rgba(100,200,255,0.35)) !important; +} \ No newline at end of file diff --git a/AccountCentre/DragAccountWindows.js b/AccountCentre/DragAccountWindows.js new file mode 100644 index 0000000..47da947 --- /dev/null +++ b/AccountCentre/DragAccountWindows.js @@ -0,0 +1,71 @@ +function DragWindow(Window) { + var Touchscreen = false; + var CalculatedLeft = 0, CalculatedTop = 0, OldLeft = 0, OldTop = 0; + Window.children[0].addEventListener('mousedown', mouseDown); + Window.children[0].addEventListener('touchstart', mouseDown); + + function mouseDown(mouse) { + Touchscreen = mouse.type === "touchstart"; + mouse.preventDefault(); + if (!Window.classList.contains('DraggingActive')) { + Window.style.zIndex = "" + 55; + if (Touchscreen) { + document.addEventListener('touchmove', mouseMove); + document.addEventListener('touchend', mouseUp); + } else { + document.addEventListener('mousemove', mouseMove); + document.addEventListener('mouseup', mouseUp); + } + Window.classList.add('DraggingActive'); + Window.children[1].classList.add("Dragging"); + OldLeft = mouse.clientX; + OldTop = mouse.clientY; + Window.children[1].style.transition = '0.5s'; + setTimeout(function () { + Window.children[1].style.transition = '0.0s'; + }, 500); + } + } + + function mouseMove(mouse) { + mouse.preventDefault(); + if (!Touchscreen) { + CalculatedLeft = OldLeft - mouse.clientX; + CalculatedTop = OldTop - mouse.clientY; + OldLeft = mouse.clientX; + OldTop = mouse.clientY; + Window.style.top = ((Window.offsetTop - CalculatedTop) / innerHeight) * 100 + 'vh';//clamp(((Window.offsetTop - CalculatedTop) / innerHeight) * 100, 0, (((innerHeight - Window.offsetHeight) / innerHeight) * 100) - 5) + 'vh'; + Window.style.left = ((Window.offsetLeft - CalculatedLeft) / innerWidth) * 100 + 'vw'; //clamp(((Window.offsetLeft - CalculatedLeft) / innerWidth) * 100, 0, (((innerWidth - Window.offsetWidth) / innerWidth) * 100) - 0.5) + 'vw'; + } else { + Window.style.top = (mouse.changedTouches[0].clientY / innerHeight) * 100 + 'vh';//clamp((mouse.changedTouches[0].clientY / innerHeight) * 100, 0, (((innerHeight - Window.offsetHeight) / innerHeight) * 100) - 5) + 'vh'; + Window.style.left = (mouse.changedTouches[0].clientX / innerWidth) * 100 + 'vw';//clamp((mouse.changedTouches[0].clientX / innerWidth) * 100, 0, (((innerWidth - Window.offsetWidth) / innerWidth) * 100) - 0.5) + 'vw'; + } + } + + function mouseUp(mouse) { + Window.children[1].classList.remove('Dragging'); + Window.classList.remove('DraggingActive'); + if (Touchscreen) { + document.removeEventListener('touchmove', mouseMove); + document.removeEventListener('touchend', mouseUp); + Touchscreen = false; + } else { + document.removeEventListener('mousemove', mouseMove); + document.removeEventListener('mouseup', mouseUp); + } + Window.children[1].style.transition = '0.5s'; + Window.style.zIndex = "" + 50; + setTimeout(function () { + Window.children[1].style.transition = '0.0s'; + }, 500); + } +} +function clamp(number, lower, upper) { + if (number > upper) { + return upper; + } + if (number < lower) { + return lower; + } + return number; +} \ No newline at end of file diff --git a/AccountCentre/LogInForm.php b/AccountCentre/LogInForm.php new file mode 100644 index 0000000..da3a1d2 --- /dev/null +++ b/AccountCentre/LogInForm.php @@ -0,0 +1,46 @@ +
+
+
+
+
log In
+
+
+ +
+
+
+
+
+

Log Into Existing Account

+
+ + +
+
+ + +
+ + + +
+ +
+
+
+ +

Don't have a halbear.net account? Create One

+
+
+
+
+
diff --git a/AccountCentre/Logo.png b/AccountCentre/Logo.png new file mode 100644 index 0000000000000000000000000000000000000000..a06d8f072fcf06591b1bf10774da59be44b9af37 GIT binary patch literal 6513 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 +
+
+
+
Sign Up
+
+
+ +
+
+
+
+
+

Create New Account

+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ + +
+ +

Have a halbear.net account? Log In

+
+
+
+
+ \ No newline at end of file diff --git a/AppAssets/App.html b/AppAssets/App.html index 0f0395d..8a60853 100644 --- a/AppAssets/App.html +++ b/AppAssets/App.html @@ -1,12 +1,12 @@ -
+
Application
-
-
+ +
diff --git a/AppAssets/AppFullscreen.html b/AppAssets/AppFullscreen.html new file mode 100644 index 0000000..3c21ca1 --- /dev/null +++ b/AppAssets/AppFullscreen.html @@ -0,0 +1,16 @@ +
+
+
+
+
Application
+
+
+ + + +
+
+
+{body} +
+
\ No newline at end of file diff --git a/Artwork.php b/Artwork.php index 5fe5e35..1e8521b 100644 --- a/Artwork.php +++ b/Artwork.php @@ -1,3 +1,6 @@ + diff --git a/ArtworkApps/MelonaArameIcon.html b/ArtworkApps/MelonaArameIcon.html index ff8723b..70569f3 100644 --- a/ArtworkApps/MelonaArameIcon.html +++ b/ArtworkApps/MelonaArameIcon.html @@ -1,3 +1,3 @@ -