Files
sam-api/public/tenant/process/task_form.php
2025-08-10 02:36:50 +09:00

41 lines
1.7 KiB
PHP

<?php
$CURRENT_SECTION = 'process';
include '../inc/header.php';
?>
<div class="container" style="max-width:1280px; margin-top:24px;">
<div class="d-flex align-items-center justify-content-between mb-3">
<h2 class="m-0">작업 생성 / 수정</h2>
<div class="d-flex gap-2">
<a href="/tenant/process/tasks.php" class="btn btn-outline-secondary">취소</a>
<button class="btn btn-primary">저장</button>
</div>
</div>
<form>
<div class="row g-3">
<div class="col-md-6">
<label class="form-label">작업명 <span class="text-danger">*</span></label>
<input type="text" class="form-control" placeholder="예) 포장">
</div>
<div class="col-md-3">
<div class="form-check mt-4">
<input class="form-check-input" type="checkbox" id="needStart">
<label class="form-check-label" for="needStart">작업 시작 피드백 필요</label>
</div>
</div>
<div class="col-md-3">
<div class="form-check mt-4">
<input class="form-check-input" type="checkbox" id="needEnd">
<label class="form-check-label" for="needEnd">작업 완료 피드백 필요</label>
</div>
</div>
</div>
<div class="mt-3">
<label class="form-label">설명</label>
<input type="text" class="form-control" placeholder="선택 입력">
</div>
</form>
</div>
<?php include '../inc/footer.php'; ?>