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

This commit is contained in:
2026-03-03 08:13:51 +00:00
parent 5b500e3b8d
commit 0e728eae0e
65 changed files with 1269 additions and 35 deletions

View File

@@ -0,0 +1,46 @@
<div id='FormBox' class="PopUpWrapper minimised animationTransition">
<div class="WindowTitleBar">
<div class="WindowTitleBarContainer">
<div class="WindowThumbnail" style="background-image: url('../GeneralAssets/windowsbutton.png');"></div>
<div class="WindowTitle">log In</div>
</div>
<div class="WindowTitleBarContainer">
<Button id="FormBoxExitBtn" class=" ExitButton appTitleButton" onclick="removeWindow();"></Button>
</div>
</div>
<div class="WindowBody" style="padding: 0; margin: 0;">
<div class="FormBoxWrapper">
<form action="AccountActions/LogIn.php" METHOD="post">
<p class="whiteText" style="text-align: center; font-size: 5vh; padding: 0; margin: 1vh; font-weight: bolder;">Log Into Existing Account</p>
<div class="LoginField">
<input class="whiteText" type="text" id="emailLogin" name="email" required maxlength="50">
<label for="emailLogin" class="whiteText">Email*</label>
</div>
<div class="LoginField">
<input class="whiteText" type="password" id="password" name="password" required maxlength="50">
<label for="password" class="whiteText">Password*</label>
</div>
<div class="ForgotPass">
<a class="hyperlink" href="#">Forgot Password?</a>
</div>
<div class="LoginField showpassword">
<input id="showloginpasswordcheckbox" type="checkbox" onclick="showpass()" style="cursor:pointer" ><a class="whiteText" onclick="showpasstext()" style="cursor:pointer; user-select: none;">Show Password</a>
</div>
<div class="LoginField">
<input class="whiteText" style="max-width: 25vh;" type="text" id="captcha" name="captcha" maxlength="25" >
<a class="whiteText"> Type your username reversed*</a><br>
</div>
<div class="LoginField">
<input class="whiteText" type="checkbox" id="remember" name="remember" value="yes">
<label for="remember" class="whiteText"> remember me?</label><br>
</div>
<div class="LoginField ButtonArea">
<button class="HotbarButton LogInButton" type="submit">
Log In
</button>
<p class="whiteText">Don't have a halbear.net account? <a onclick="signUpForm()" class="hyperlink register-link">Create One</a></p>
</div>
</form>
</div>
</div>
</div>