Files
FACULTATE-LICENTA/CEO/src/renderer/html/manage_departments.html
T

54 lines
1.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="../assets/hard-disk.ico" type="image/x-icon">
<link rel="stylesheet" href="../css/manage_departments.css">
<link rel="stylesheet" href="../css/transition.css">
<script src="../js/manage_departments.js"></script>
<title>Manage Departments</title>
</head>
<body>
<div class="container">
<form action="/signup" method="post" class="left_block">
<div class="left_block_top">
<h1>CREATE NEW DEPARTMENT</h1>
<hr>
</div>
<div class="left_block_content">
<input type="text" name="text" placeholder="Name">
</div>
<div class="left_block_footer">
<button type="button" name="back">Back</button>
<button type="submit" name="create">Create</button>
</div>
</form>
<form action="/signup" method="post" class="right_block">
<div class="security_level_form_title">
<h1>SECURITY</h1>
<h1>LEVELS</h1>
<hr>
</div>
<ul id="security_level_form_content">
<li draggable="true">Department 1</li>
<li draggable="true">Department 2</li>
<li draggable="true">Department 3</li>
<li draggable="true">Department 4</li>
<li draggable="true">Department 4</li>
<li draggable="true">Department 4</li>
<li draggable="true">Department 4</li>
<!-- Add more departments as needed -->
</ul>
<div>
<button name="submit" type="submit">Submit</button>
</div>
</form>
</div>
</body>
</html>