106 lines
5.0 KiB
Plaintext
106 lines
5.0 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
@{
|
|
Layout = null;
|
|
}
|
|
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
|
|
<title>SB Admin 2 - Login</title>
|
|
|
|
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
|
|
<link rel="stylesheet" href="~/administration.styles.css" asp-append-version="true" />
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css">
|
|
<!-- Custom fonts for this template-->
|
|
<link href="https://fonts.googleapis.com/css?family=Nunito:200,300,400,600,700,800,900" rel="stylesheet">
|
|
|
|
<!-- Font Awesome -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" crossorigin="anonymous" referrerpolicy="no-referrer" />
|
|
|
|
<!-- Bootstrap CSS -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.3.3/css/bootstrap.min.css" crossorigin="anonymous" referrerpolicy="no-referrer" />
|
|
|
|
<!-- SB Admin 2 CSS (CDN community) -->
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/BlackrockDigital/startbootstrap-sb-admin-2@master/dist/css/sb-admin-2.min.css">
|
|
|
|
</head>
|
|
|
|
<body class="bg-gradient-primary">
|
|
<video id="bg-video" autoplay muted loop playsinline>
|
|
<source src="~/images/bg.mp4" type="video/mp4" />
|
|
</video>
|
|
<div class="container">
|
|
|
|
<!-- Outer Row -->
|
|
<div class="row justify-content-center">
|
|
|
|
<div class="col-xl-10 col-lg-12 col-md-9">
|
|
|
|
<div class="card o-hidden border-0 shadow-lg my-5">
|
|
<div class="card-body p-0">
|
|
<!-- Nested Row within Card Body -->
|
|
<div class="row">
|
|
<div class="col-lg-6 d-none d-lg-block bg-login-image"></div>
|
|
<div class="col-lg-6">
|
|
<div class="p-5">
|
|
<div class="text-center">
|
|
<h1 class="h4 text-gray-900 mb-4" style="font-weight: 800;margin-bottom: 8%!important;">
|
|
Welcome Back!
|
|
</h1>
|
|
</div>
|
|
<form asp-controller="Connections" asp-action="Login" method="post" class="user">
|
|
@Html.AntiForgeryToken()
|
|
<input type="hidden" name="returnUrl" value="@Context.Request.Query["returnUrl"]" />
|
|
|
|
<div class="form-group">
|
|
<input type="text" name="username" class="form-control form-control-user"
|
|
placeholder="Pseudo" autocomplete="username" required />
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<input type="password" name="password" class="form-control form-control-user"
|
|
placeholder="Mot de passe" autocomplete="current-password" required />
|
|
</div>
|
|
|
|
<button type="submit" class="btn btn-primary btn-user btn-block">
|
|
Se connecter
|
|
</button>
|
|
</form>
|
|
|
|
<div class="text-danger">@Html.ValidationSummary(false)</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.3.3/js/bootstrap.bundle.min.js" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.4.1/jquery.easing.min.js" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
|
<script src="https://cdn.jsdelivr.net/gh/BlackrockDigital/startbootstrap-sb-admin-2@master/dist/js/sb-admin-2.min.js"></script>
|
|
|
|
<script src="~/lib/jquery-easing/jquery.easing.js"></script>
|
|
<script src="https://unpkg.com/@@popperjs/core@2"></script>
|
|
<script src="https://unpkg.com/tippy.js@6/dist/tippy-bundle.umd.min.js"></script>
|
|
|
|
<script src="~/js/api.js" asp-append-version="true"></script>
|
|
<script src="~/js/site.js" asp-append-version="true"></script>
|
|
|
|
<script src="~/lib/datatable/datatables.min.js"></script>
|
|
|
|
</body>
|
|
|
|
</html> |