Add files via upload
This commit is contained in:
60
index.html
Normal file
60
index.html
Normal file
@@ -0,0 +1,60 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Login - noahpombas</title>
|
||||
<link rel="stylesheet" href="assets/css/index.css">
|
||||
<link rel="stylesheet" href="assets/bootstrap/bootstrap.min.css">
|
||||
</head>
|
||||
<body class="page-transition">
|
||||
<div class="container">
|
||||
<div id="login-container" class="login-container active">
|
||||
<h2 class="text-center">Login</h2>
|
||||
<br>
|
||||
<form action="#" method="post">
|
||||
<div class="mb-3">
|
||||
<label for="username" class="form-label">E-Mail or Username</label>
|
||||
<input type="text" class="form-control" name="username_or_email" placeholder="E-Mail or Username" required>
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label for="password" class="form-label">Password</label>
|
||||
<input type="password" class="form-control" name="password" placeholder="Password" required>
|
||||
</div>
|
||||
<p class="text-center"><a style="text-decoration: none; color: #888;" href="#" id="to-signup">Don't have an account?</a></p>
|
||||
<button type="submit" class="btn btn-primary w-100">Login</button>
|
||||
</form>
|
||||
</div>
|
||||
<div id="signup-container" class="signup-container">
|
||||
<h2 class="text-center">Sign Up</h2>
|
||||
<br>
|
||||
<form action="#" method="post">
|
||||
<div class="mb-3">
|
||||
<label for="email" class="form-label">E-Mail</label>
|
||||
<input type="email" class="form-control" name="email" placeholder="E-Mail" required>
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label for="username" class="form-label">Username</label>
|
||||
<input type="text" class="form-control" name="username" placeholder="Username" required>
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label for="password" class="form-label">Password</label>
|
||||
<input type="password" class="form-control" name="password" id="password" placeholder="Password" required>
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label for="confirm_password" class="form-label">Confirm Password</label>
|
||||
<input type="password" class="form-control" id="confirm_password" placeholder="Confirm Password" required>
|
||||
<div id="passwordError" class="text-danger mt-2"></div>
|
||||
</div>
|
||||
<p class="text-center"><a style="text-decoration: none; color: #888;" href="#" id="to-login">Already have an account?</a></p>
|
||||
<button type="submit" class="btn btn-primary w-100">Sign Up</button>
|
||||
<br>
|
||||
<br>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<script src="assets/js/index.js"></script>
|
||||
<script src="assets/js/passwordconfirm.js"></script>
|
||||
<script src="assets/bootstrap/bootstrap.bundle.min.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user