BACKEND DONE FOR ALL APPS
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta content="width=device-width, initial-scale=1.0" name="viewport">
|
||||
<link href="../assets/hard-disk.ico" rel="icon" type="image/x-icon">
|
||||
|
||||
<link href="../css/departments_management.css" rel="stylesheet">
|
||||
<link href="../css/transition.css" rel="stylesheet">
|
||||
|
||||
<script src="../js/departments_management.js"></script>
|
||||
<script src="../js/helpers.js"></script>
|
||||
|
||||
<title>Manage Departments</title>
|
||||
</head>
|
||||
<body onload="fadeIn()">
|
||||
<div class="container">
|
||||
<div class="left_block">
|
||||
<h1>Departments</h1>
|
||||
<div id="departments-container">
|
||||
<!-- Department divs will be dynamically inserted here -->
|
||||
</div>
|
||||
<div class="footer">
|
||||
<button id="backButton" name="back" type="button">Back</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right_block">
|
||||
<h1>Create New Department</h1>
|
||||
<form id="new-department-form">
|
||||
<label for="departmentName">Department Name:</label>
|
||||
<input type="text" id="departmentName" name="departmentName" placeholder="Enter department name" required>
|
||||
<button type="submit" id="createDepartmentButton">Create Department</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Modal for modifying department -->
|
||||
<div id="modify-department-modal" class="modal">
|
||||
<div class="modal-content">
|
||||
<span id="close-modal" class="close">×</span>
|
||||
<h2>Modify Department</h2>
|
||||
<label for="new-department-name">New Department Name:</label>
|
||||
<input type="text" id="new-department-name" placeholder="Enter new department name" />
|
||||
<button id="confirm-modify">Modify</button>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user