Layout redesign.
- In a seperate commit from the stylesheet changes. Work in progress.
This commit is contained in:
@ -5,40 +5,35 @@
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<title>Quartznet | Login</title>
|
||||
<head>
|
||||
<title>Quartznet | Login</title>
|
||||
|
||||
<?php include "../includes/head.php" ?>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<?php include "../includes/header.php" ?>
|
||||
|
||||
<main>
|
||||
<section class="container">
|
||||
<main class="container">
|
||||
<form class="form-signin" action="login.php" method="post">
|
||||
<div class="form-label-group">
|
||||
<label for="username">Username</label>
|
||||
<input type="text" id="username" class="form-control" name="username" placeholder="Username" required autofocus>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-9 col-md-7 col-lg-5 mx-auto">
|
||||
<div class="form-label-group">
|
||||
<label for="inputPassword">Password</label>
|
||||
<input type="password" id="password" class="form-control" name="password" placeholder="Password" required>
|
||||
</div>
|
||||
|
||||
<h2 class="card-title">Login</h2>
|
||||
<form class="form-signin" action="login.php" method="post">
|
||||
<div class="form-label-group">
|
||||
<input type="text" id="username" class="form-control" name="username" placeholder="Username" required autofocus>
|
||||
<label for="username">Username</label>
|
||||
</div>
|
||||
<div class="custom-control custom-checkbox mb-3">
|
||||
<input type="checkbox" class="custom-control-input" id="customCheck1">
|
||||
<label class="custom-control-label" for="customCheck1">Remember password</label>
|
||||
</div>
|
||||
<button class="btn btn-lg btn-primary btn-block text-uppercase" type="submit">Sign in</button>
|
||||
</form>
|
||||
</main>
|
||||
|
||||
<div class="form-label-group">
|
||||
<input type="password" id="password" class="form-control" name="password" placeholder="Password" required>
|
||||
<label for="inputPassword">Password</label>
|
||||
</div>
|
||||
|
||||
<div class="custom-control custom-checkbox mb-3">
|
||||
<input type="checkbox" class="custom-control-input" id="customCheck1">
|
||||
<label class="custom-control-label" for="customCheck1">Remember password</label>
|
||||
</div>
|
||||
<button class="btn btn-lg btn-primary btn-block text-uppercase" type="submit">Sign in</button>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<?php include "../includes/footer.php" ?>
|
||||
|
||||
</html>
|
||||
<?php include "../includes/footer.php" ?>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user