-
Notifications
You must be signed in to change notification settings - Fork 1
/
workspacedetails.html
64 lines (64 loc) · 2.6 KB
/
workspacedetails.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<!-- SODV 1201 Introduction to Web Programming
SODV 1201 Term Project- Co-Worker Office Space
Program designed and coded by: SODV 1201 Group 2: Sasha Greene, Gurleen Kaur, Paul K Kho, Evan Maclean
Instructor: Dima Marachi
Due : Phase 1 : June 2 2022
Phase 2 : June 30 2022
-->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> SODV 1201 Term Project - CoWorker Workspace </title>
<link rel="stylesheet" href="sodv1201termproject.css" >
<!-- Load JQuery Library -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.0/jquery.min.js"> </script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.19.0/jquery.validate.min.js"> </script>
</head>
<body>
<h1 id="title-window"> <img src="images/work center icon.jpg" height="100" width="100" >
Owner Co-Worker Workspace and Properties Registry
<img src="images/Project Icon.png" height=" 100" width="100">
</h1>
<header >
<nav>
<a href="coworkerlogin.html"> Home </a>
<a class="isActive" href="#workspacedetails.html"> Co-Worker Work Space and Properties</a>
<a href="contactinformation.html" > Contact Details </a>
<a href="site-map.html"> Site Map</a>
</nav>
</header>
<div class="container">
<!-- User will can access Co-Worker Work Space and Properties web page or Owner/Co-Worker
Work Space and Properties web page. -->
<h1> Co-Worker Properties and Work Space Details</h1>
<form>
<div class="left_box">
<h2> Properties Listing </h2>
<div id="custombox"> </div>
</div>
<div class="right_box">
<h2> Work Spaces Listing </h2>
<div id="custombox"> </div>
</div>
<div class="display_results">
<p id="p1"> </p>
<p id="p2"> </p>
</div>
</form>
<div class="editfunctions">
<button> Append </button>
<button> Delete </button>
<button> Update </button>
<button> Save </button>
<button> Search </button>
</div>
</div>
<footer>
Project prepared and programmed by SODV 1201 Group 2. All rights reserved. © 2022.
</footer>
<script src = "sodv1201termproject.js"> </script>
</body>
</html>