-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathProviderTargets.html
More file actions
executable file
·62 lines (55 loc) · 2.26 KB
/
ProviderTargets.html
File metadata and controls
executable file
·62 lines (55 loc) · 2.26 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Test subjects</title>
<link rel="stylesheet" href="./css/styleProvider.css" />
</head>
<body>
<div class="targetPage">
<div id="providerMenu" class="providerMenu">
<img id="providerPic" src="./images/add.png" alt="profilePic">
<ul class="menuElements">
<li><a class="sectionName" href="">TASKS</a></li>
<li><a class="sectionName" href="file:////Users/Xelafe/Documents/Winter18/CSE134B/DatingWeb/timelineProvider.html">TIMELINE</a></li>
</ul>
</div>
<h3 id="headerTimeline">Tasks</h3>
<div class="targets">
<div class="dealingTargets" onclick="selectTarget(this)">
<h4 class="wanted">#1</h4>
<img src="./images/emptyProfile.png" alt="WheatlyPic">
<h5 class="targetName">Subject 1</h5>
</div>
<div class="dealingTargets" onclick="selectTarget(this)">
<h4 class="PENDING">#2</h4>
<img src="./images/emptyProfile.png" alt="chellPic">
<h5 class = "targetName">Subject 2</h5>
</div>
</div>
<div class="chat" id="chatBox" >
<span class="chatTitle" onclick="chatToggle()">Need Advice?</span>
<span class="open" id="openS" onclick="chatToggle()">+</span>
<span class="close" id="closeS" onclick="chatToggle()">−</span>
<div id="chatLog">
<div id="chat">
<div class="container">
<img src="./images/cat.jpg" alt="agent avatar" class="right"/>
<p class="response">Help!</p>
</div>
<div class="container">
<img src="./images/cat.jpg" alt="client avatar"/>
<p class="response">I think we need a new plan... She's not responding to my texts</p>
</div>
</div>
<div id="sendMessage">
<textarea placeholder="Leave a command for your test subjects." id="message"
rows="5" wrap="soft" spellcheck="true"></textarea>
<button id="sendBttn" onclick="newMessage()">←</button>
</div>
</div>
</div>
</div>
<script src="./js/providerProfile.js"></script>
</body>
</html>