-
Notifications
You must be signed in to change notification settings - Fork 0
/
babysitter_contacts.html
37 lines (36 loc) · 1.19 KB
/
babysitter_contacts.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link href='http://fonts.googleapis.com/css?family=Bubblegum+Sans|Noto+Sans' rel='stylesheet' type='text/css'>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>SitterPlan - Contact List</title>
<link rel="stylesheet" type="text/css" href="sitterPlan.css" />
</head>
<body>
<div id="logo">SitterPlan</div>
<table id="buttonRow">
<tr>
<td></td>
<td>
<input id="manageJobs" type="button" name="manageJobs" value="Manage Jobs" onclick="showCreateJob();"/>
</td>
<td>
<input id="editSchedule" type="button" name="editSchedule" value="Edit Schedule"/>
</td>
</tr>
</table>
<div id="pageContent">
<span>Search for new contacts<span>
<input type="text" name="Search" value="">
<input id="searchContactParents" type="button" value="Search"/>
<div id="conacts">
<h2>My Contacts</h2>
<div id="contactList">
<a href="">The Smiths</a><br>
<a href="">The Johnsons</a><br>
<a href="">The Bernsteins</a><br>
</div>
</div>
</div>
</body>
</html>