General content update.
- Changed banner titles. - Reworked and updated the privacy policy. - Fixed indentation and layout.
This commit is contained in:
@ -1,7 +1,11 @@
|
||||
<script>
|
||||
|
||||
import Banner from '../../components/banner.svelte'
|
||||
</script>
|
||||
|
||||
<main>
|
||||
this is not done
|
||||
<Banner title="Admin"/>
|
||||
|
||||
<main class="container">
|
||||
<section>
|
||||
this is not done
|
||||
</section>
|
||||
</main>
|
@ -2,24 +2,24 @@
|
||||
import Banner from '../../components/banner.svelte'
|
||||
</script>
|
||||
|
||||
<Banner/>
|
||||
<Banner title="Login"/>
|
||||
|
||||
<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>
|
||||
</div>
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<div class="form-label-group">
|
||||
<label for="inputPassword">Password</label>
|
||||
<input type="password" id="password" class="form-control" name="password" placeholder="Password" required>
|
||||
</div>
|
||||
<div class="form-label-group">
|
||||
<label for="inputPassword">Password</label>
|
||||
<input type="password" id="password" class="form-control" name="password" placeholder="Password" required>
|
||||
</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 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>
|
Reference in New Issue
Block a user