Files
CRM-IKZ/app/Views/admin/boards/create.php
T
2026-07-14 08:19:56 +04:00

46 lines
1.8 KiB
PHP

<h1 class="h3 mb-3">Создание доски</h1>
<?php if (!empty($_SESSION['error'])): ?>
<div class="alert alert-danger">
<?= htmlspecialchars($_SESSION['error']) ?>
</div>
<?php unset($_SESSION['error']); ?>
<?php endif; ?>
<div class="card shadow-sm">
<div class="card-body">
<form method="post" action="/admin/boards/store">
<div class="mb-3">
<label class="form-label">Название</label>
<input type="text" name="name" class="form-control" required>
</div>
<div class="mb-3">
<label class="form-label">Код</label>
<input type="text" name="code" class="form-control" required>
<div class="form-text">Например: supply, it, hr</div>
</div>
<div class="mb-3">
<label class="form-label">Описание</label>
<textarea name="description" class="form-control" rows="3"></textarea>
</div>
<div class="form-check mb-3">
<input class="form-check-input" type="checkbox" name="is_active" id="is_active" checked>
<label class="form-check-label" for="is_active">
Активная доска
</label>
</div>
<div class="form-check mb-3">
<input class="form-check-input" type="checkbox" name="show_on_home" id="show_on_home" checked>
<label class="form-check-label" for="show_on_home">
Показывать на главной
</label>
</div>
<button type="submit" class="btn btn-success">Создать</button>
<a href="/admin/boards" class="btn btn-secondary">Назад</a>
</form>
</div>
</div>