You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
YOLO/login.php

62 lines
2.3 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="login.css">
<!-- Bootstrap 5 CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- font-awesome icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<?php include 'navbar.php'; ?>
<section class="vh-80">
<div class="container-fluid h-custom">
<div class="row d-flex justify-content-center align-items-center h-100">
<div class="col-md-8 col-lg-6 col-xl-4 offset-xl-1">
<form method="post" action="register.php">
<!-- Email input -->
<div data-mdb-input-init class="form-outline mb-4">
<label class="form-label" for="email">Email address:</label>
<input type="email" id="email" name="email" class="form-control form-control-lg"
placeholder="Enter a valid email address" required />
</div>
<!-- Password input -->
<div data-mdb-input-init class="form-outline mb-3">
<label class="form-label" for="password">Password:</label>
<input type="password" id="password" name="password" class="form-control form-control-lg"
placeholder="Enter password" required />
</div>
<div class="d-flex justify-content-between align-items-center">
<!-- Checkbox -->
<div class="form-check mb-0">
<input class="form-check-input me-2" type="checkbox" value="" id="remember" />
<label class="form-check-label" for="remember">
Remember me
</label>
</div>
<a href="#!" class="text-body">Forgot password?</a>
</div>
<div class="text-center text-lg-start mt-4 pt-2">
<button type="submit" name="Login" class="btn btn-primary btn-lg"
style="padding-left: 2.5rem; padding-right: 2.5rem;">Login</button>
<p class="small fw-bold mt-2 pt-1 mb-0">Don't have an account? <a href="createAccount.php"
class="link-danger">Register</a></p>
</div>
</form>
</div>
</div>
</div>
</section>
<?php include 'footer.php'; ?>
</body>
</html>