-
Notifications
You must be signed in to change notification settings - Fork 0
/
commsPrefs.html
81 lines (80 loc) · 2.48 KB
/
commsPrefs.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=8" />
<meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
<title>Dashboard - ShareCareClub</title>
<link rel="stylesheet" href="main.css" type="text/css" />
</head>
<body>
<div id="PageWrapper">
<div id="Page">
<div id="HeadWrapper">
<div id="Header">
<h1>ShareCareClub</h1>
<h2>Grans Care</h2>
</div>
</div>
<div id="MenuWrapper">
<div id="Menu">
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="messages.html">Messages</a></li>
<li><a href="team.html">Team</a></li>
<li class="right current"><a href="commsPrefs.html">Communicate</a></li>
<li class="right"><a href="schedule.html">Schedule</a></li>
</ul>
</div>
</div>
<div id="BodyWrapper">
<div id="Body">
<table class="communicationMethods">
<tr id="CommunicationMethod1" class="email">
<form>
<td class="details">
<div class="title" id="CommunicateTitle1">Primary Email</div>
<div class="details" id="CommunicateDetails1">[email protected]</div>
</td>
<td class="actions">
<a href="" onclick="editDetails(1); return false;">Edit</a>
<a href="">Delete</a>
</td>
</form>
</tr>
<tr id="CommunicationMethod2" class="mobile">
<form>
<td class="details">
<div class="title" id="CommunicateTitle2">Mobile Phone</div>
<div class="details" id="CommunicateDetails2">(+44) 765 432 1111</div>
</td>
<td class="actions">
<a href="" onclick="editDetails(2); return false;">Edit</a>
<a href="">Delete</a>
</td>
</form>
</tr>
<tr id="CommunicationMethod3" class="email">
<form>
<td class="details">
<div class="title" id="CommunicateTitle3">Work Email</div>
<div class="details" id="CommunicateDetails3">[email protected]</div>
</td>
<td class="actions">
<a href="" onclick="editDetails(3); return false;">Edit</a>
<a href="">Delete</a>
</td>
</form>
</tr>
</table>
</div>
</div>
<div id="FooterWrapper">
<div id="Footer">
© ShareCareClub 2011
</div>
</div>
</div>
</div>
<script src="jquery.min.js" type="text/javascript"></script>
<script src="commsPrefs.js" type="text/javascript"></script>
</body>
</html>