Files
HalbearNetDesktopSite/AccountApps/SignUp.html
2026-01-26 08:49:11 +00:00

37 lines
2.3 KiB
HTML

<div id="SignUpBody" style="Padding:2vh;">
<form action="includes/RegisterAccount.php" method="POST" style="width: 100%;">
<div class="flexboxLoginField">
<input type="email" id="email" name="email" required maxlength="50">
<label for="Email" class="whiteText">Email Address*</label>
</div>
<div class="flexboxLoginField">
<input type="text" id="newusername" name="newusername" required maxlength="20">
<label for="newusername" class="whiteText">New Username*</label>
</div>
<div class="flexboxLoginField">
<input type="text" id="displayname" name="displayname" maxlength="15">
<label for="DisplayName" class="whiteText">New Display Name</label>
</div>
<div class="flexboxLoginField">
<input type="password" id="newpassword" name="newpassword" required maxlength="25">
<label for="newpassword" class="whiteText">New Password*</label>
</div>
<div class="flexboxLoginField">
<input style="width: 50px;" type="text" id="capaacha" name="captcha" maxlength="5" >
<a class="whiteText"> Type "human"</a><br>
</div>
<div class="flexboxLoginField showpassword">
<input id="showpasswordcheckbox" type="checkbox" onclick="showpass('showpasswordcheckbox')" style="cursor:pointer" ><a class="whiteText" onclick="showpass('showpasswordcheckbox')" style="cursor:pointer; user-select: none;">Show Password</a>
</div>
<div class="flexboxLoginField">
<input type="checkbox" id="terms" name="terms" value="yes" required>
<label for="terms" class="whiteText"> I agree to the <a href="termsAndConditions.html" class="hyperlink tc">terms and conditions</a>*</label><br>
</div>
<div class="flexboxLoginField" style="width: 95%; display: flex; justify-content: center; align-items: center; justify-items: center; flex-direction: column;">
<button type="submit" class="ButtonHalNetSytle">
<a class="buttontext signintxt">Create Account</a>
</button>
<p class="whiteText">have a halbear.net account? <a href="#" class="hyperlink login-link" onclick="SwitchPage('SignIn','SignUpBody');">Log In</a></p>
</div>
</form>
</div>