47 lines
2.5 KiB
HTML
47 lines
2.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="d3vyce.fr Site" />
|
|
<meta name="author" content="d3vyce - Nicolas Sudres" />
|
|
<title>Admin Panel • d3vyce.fr</title>
|
|
<!-- Favicon-->
|
|
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
|
|
<!-- Boostrap-->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.bundle.min.js"></script>
|
|
<!-- Custom CSS-->
|
|
<link rel="stylesheet" href="css/style.css">
|
|
<!-- Awesome Font-->
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
<!-- Bootstrap Icons-->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css" rel="stylesheet" />
|
|
<!-- Roboto Font -->
|
|
<link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
|
|
<!-- Umami Analytics -->
|
|
<script async src="https://analytics.d3vyce.fr/script.js" data-website-id="4c83df85-5566-4647-ba67-b3724890baca"></script>
|
|
<script src="js/script.js"></script>
|
|
<script src="js/admin.js"></script>
|
|
</head>
|
|
<body>
|
|
<header class="masthead bg-dark-1" id="home">
|
|
<div class="container h-100">
|
|
<div class="row head-row align-items-center h-100 justify-content-evenly text-center">
|
|
<div class="col-lg-12 col-xl-5">
|
|
<h1 class="text-white font-weight-bold">Admin Panel</h1>
|
|
<form action="admin.html" method="post" id="signin">
|
|
<div class="form-group mt-5">
|
|
<input type="login" class="form-control" id="login" aria-describedby="emailHelp" placeholder="Login">
|
|
</div>
|
|
<div class="form-group mt-3">
|
|
<input type="password" class="form-control" id="password" placeholder="Password">
|
|
</div>
|
|
<button type="submit" class="btn btn-outline-light btn-lg mt-5">Submit</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
</body>
|
|
</html> |