first commit

This commit is contained in:
exercict
2026-07-14 08:10:11 +04:00
commit fdfb0dd62e
60 changed files with 9930 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
<div class="row justify-content-center">
<div class="col-12 col-md-5">
<div class="card shadow-sm">
<div class="card-body">
<h1 class="h4 mb-4">Вход в CRM</h1>
<?php if (!empty($_SESSION['error'])): ?>
<div class="alert alert-danger">
<?= htmlspecialchars($_SESSION['error']) ?>
</div>
<?php unset($_SESSION['error']); ?>
<?php endif; ?>
<form method="post" action="/login">
<div class="mb-3">
<label class="form-label">Логин</label>
<input type="text" name="login" class="form-control" required>
</div>
<div class="mb-3">
<label class="form-label">Пароль</label>
<input type="password" name="password" class="form-control" required>
</div>
<button type="submit" class="btn btn-primary w-100">Войти</button>
</form>
</div>
</div>
</div>
</div>