48 lines
2.7 KiB
PHP
48 lines
2.7 KiB
PHP
<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();" on></Button>
|
|
</div>
|
|
</div>
|
|
<div class="WindowBody" style="padding: 0; margin: 0;">
|
|
<div class="FormBoxWrapper">
|
|
<form action="AccountActions/LogIn.php" METHOD="post">
|
|
<p class="whiteText FormTitle" style="text-align: center; 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="ForgotPass" href="#">Forgot Password?</a>
|
|
</div>
|
|
<div class="LoginField showpassword">
|
|
<input id="showloginpasswordcheckbox" class="Formcheckbox" 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 showpassword">
|
|
|
|
<input class="Formcheckbox" 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>
|