pbmc-cmod/public/login.html

54 lines
1.9 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" type="image/png" sizes="16x16" href="favicon.ico">
<title>Summit-CRM</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap" />
<link href="assets/css/styles.css" rel="stylesheet">
<link href="assets/css/login.css" rel="stylesheet">
<style>
.bg-primary-luxury{ background-color: #1C2B19; }
.font-primary-luxury{ color: #E9E3C9;}
.login-form {width:490px;}
.bg-login { background-color:#1c1c1c; }
</style>
</head>
<body>
<section id="wrapper" class="login-register login-sidebar bg-login">
<div class="login-box card rounded-0">
<div class="card-body">
<form class="form-horizontal form-material text-center" id="loginform" method='POST'>
<img class='img-fluid mt-5' src="assets/img/login-logo.png" /></a>
<div class="form-group mt-3 mb-1">
<div class="col-xs-12">
<input class="form-control" type="text" name='username' placeholder="Username" value='' required />
</div>
</div>
<div class="form-group mb-1">
<div class="col-xs-12">
<input class="form-control" type="password" name='password' placeholder="Password" value='' />
</div>
</div>
<div class="form-group text-center m-t-20">
<div class="col-xs-12">
<button class="btn bg-primary-luxury btn-block w-100" type="submit">
<span class="font-primary-luxury"> Login </span>
</button>
</div>
</div>
</form>
</div>
<div class='card-footer'>
<p class='ms-auto'>&copy; 4SKA1 2024 - 2025</p>
</div>
</div>
</section>
<script src="assets/jquery-3.7.1.min.js"></script>
<script src="assets/js/bootstrap.bundle.min.js"></script>
</body>
</html>