63 lines
2.4 KiB
HTML
63 lines
2.4 KiB
HTML
<!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/normalizer.css" rel="stylesheet">
|
|
<link href="../css/main_menu.css" rel="stylesheet">
|
|
<link href="../css/transition.css" rel="stylesheet">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Pridi:wght@200;300;400;500;600;700&display=swap" rel="stylesheet">
|
|
|
|
<script src="../js/main_menu.js"></script>
|
|
<script src="../js/helpers.js"></script>
|
|
|
|
<title>Main Page</title>
|
|
|
|
</head>
|
|
<body onload="initialSetup(); fadeIn()">
|
|
<div class="page">
|
|
<div class="container">
|
|
<div class="left_block">
|
|
<div class="notification-title">
|
|
<h1 class="notif-title">Notifications</h1>
|
|
</div>
|
|
<div class=left-content>
|
|
<div class="notifications" id="notifications">
|
|
<!--Notifications are generated here-->
|
|
</div>
|
|
<div class="left_block_footer">
|
|
<button class="logout-button" id="logout" name="logout">Logout</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="right_block">
|
|
<div class="navbar">
|
|
<div class="welcome">
|
|
<img alt="" src="../assets/user_1144760.png">
|
|
<h3 class="user">Welcome Back, </h3>
|
|
<h3 class="user" id="username-field"></h3>
|
|
<h3 class="user">!</h3>
|
|
|
|
</div>
|
|
<h1 class="title">TeamVault</h1>
|
|
</div>
|
|
|
|
<div class="right_block_content">
|
|
<button id="change-info" name="menu_button">Change your info</button>
|
|
<button id="share-file" name="menu_button">Share a file</button>
|
|
<button id="backup-dir" name="menu_button">Set backup directory</button>
|
|
<button id="department-dir" name="menu_button">Set department directory</button>
|
|
<button id="share-dir" name="menu_button">Set share directory</button>
|
|
<button id="restore-backup" name="menu_button">Restore backup</button>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|