69 lines
2.9 KiB
HTML
69 lines
2.9 KiB
HTML
<!-- Centralized Status Message -->
|
|
<p id="StatusMessage"></p>
|
|
|
|
<!-- <div class="form-container" id="loginForm">
|
|
<h1>Login</h1>
|
|
<form>
|
|
<label for="login_email">Email:</label>
|
|
<input type="email" id="login_email" name="email" required><br>
|
|
|
|
<label for="login_password">Password:</label>
|
|
<input type="password" id="login_password" name="password" required><br>
|
|
|
|
<button type="button" onclick="login()">Login</button>
|
|
</form>
|
|
</div>
|
|
|
|
<div class="form-container" id="register_Form">
|
|
<h1>Register</h1>
|
|
<form>
|
|
<label for="register_firstName">First Name:</label>
|
|
<input type="text" id="register_firstName" name="firstName" required><br>
|
|
|
|
<label for="register_lastName">Last Name:</label>
|
|
<input type="text" id="register_lastName" name="lastName" required><br>
|
|
|
|
<label for="register_email">Email:</label>
|
|
<input type="email" id="register_email" name="email" required><br>
|
|
|
|
<label for="register_password">Password:</label>
|
|
<input type="password" id="register_password" name="password" required><br>
|
|
|
|
<label for="register_activationToken">Activation Token:</label>
|
|
<input type="text" id="register_activationToken" name="activationToken" required><br>
|
|
|
|
<button type="button" onclick="register()">Register</button>
|
|
</form>
|
|
</div> -->
|
|
<main class="login-file">
|
|
<div class="container" id="container">
|
|
<div class="form-container sign-up">
|
|
<form>
|
|
<h1>Create Account</h1>
|
|
<input type="text" name="firstName" id="register_firstName" required placeholder="First name">
|
|
<input type="text" name="lastName" id="register_lastName" required placeholder="Last name">
|
|
<input type="email" name="email" id="register_email" required placeholder="Email">
|
|
<input type="password" name="password" id="register_password" required placeholder="Password">
|
|
<input type="text" name="activationToken" id="register_activationToken" required
|
|
placeholder="Activation Token">
|
|
<button type="button" onclick="register()">Register</button>
|
|
</form>
|
|
</div>
|
|
<div class="form-container sign-in">
|
|
<h1>Login</h1>
|
|
<form>
|
|
<input type="email" name="email" id="login_email" required placeholder="Email">
|
|
<input type="password" name="password" id="login_password" required placeholder="Password">
|
|
<button type="button" onclick="login()">Login</button>
|
|
</form>
|
|
</div>
|
|
<!-- <div class="toggle-container">
|
|
<div class="toggle">
|
|
<div class="toggle-panel toggle-left">
|
|
<h1>Glad to have you back!</h1>
|
|
<p>Enter your login information to continue to adlerka.top</p>
|
|
</div>
|
|
</div>
|
|
</div> -->
|
|
</div>
|
|
</main> |