-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathUserStory7and8.html
60 lines (57 loc) · 2.56 KB
/
UserStory7and8.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
<!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 24 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="mytestcodes.css" >
<script type = "text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js" >
</script>
</head>
<body>
<h1 id="title-window">
<img src="images/work center icon.jpg" height="100" width="100" >
Co-op Work Space Office Center
<img src="images/Project Icon.png" height=" 100" width="100">
</h1>
<header >
<nav>
<a href="UserStory7and8.html"> Home </a> <!-- Temporary Home page during tests and designs -->
<a href="workspace.html"> Co-Worker Work Spaces & Properties </a>
<a href="owner.html"> Owner Co-Worker Work Spaces & Properties </a>
<a > Site-Map </a>
</nav>
</header>
<div class="container">
<!-- The user will can access Co-Worker Work Space and Properties web page
or Owner/Co-Worker Work Space and Properties web page. -->
<div class="left_box">
<h2> Co-Worker Work Spaces and Properties </h2>
<h2> Co-Worker Owner Work Spaces and Properties </h2>
<img src="images/Project Icon.png" alt="Term_Project" height="300" width="300">
</div>
<div class="right_box">
<div class="Selectbox">
<p> Please select one of the following <br>
User Name and Password Required. <br>
<button id="SelectCoWorker" type="button"> Co-Worker Work Spaces & Properties </button> <br>
<button id="SelectOwner" type="button" > Owner Co-Worker Work Spaces & Properties </button> <br>
<button id="SelectChoice" type="button" > Click here to Enter Selected choice </button>
</p>
</div>
</div>
</div>
<footer>
Project prepared and programmed by SODV 1201 Group 2. All rights reserved. © 2022.
</footer>
<script src = "mytestcodes.js"> </script>
</body>
</html>