-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrodo.html
More file actions
131 lines (107 loc) · 5 KB
/
Copy pathfrodo.html
File metadata and controls
131 lines (107 loc) · 5 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<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">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="../../assets/ico/favicon.ico">
<title>Pet Tracker</title>
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Custom styles for this template -->
<link href="css/styles.css" rel="stylesheet">
<!-- Calendar styles -->
<link rel="stylesheet" type="text/css" href="css/fullcalendar.css" />
<!-- Timeline styles -->
<link href="css/timeline.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-sm-3 col-md-2 sidebar" id="sidebar" role="navigation">
<div class="logo"><a class="logo-text" href="index.html">pet tracker</a> <a class="about-link" href="about.html">about</a></div>
<ul class="nav nav-sidebar">
<li class="category"><a href="index.html">My Pets</a></li>
<li class="subcategory"><a href="maximus.html">Maximus</a></li>
<li class="active subcategory"><a href="frodo.html">Frodo</a></li>
</ul>
<ul class="nav nav-sidebar">
<li class ="category"><a href="sittingpets.html">Pets I'm Sitting</a></li>
<li class="subcategory"><a href="john.html">John</a></li>
<li class="subcategory"><a href="frog.html">Frog</a></li>
</ul>
<ul class="nav nav-sidebar">
</div>
<div class="col-sm-9 col-md-10 col-sm-offset-3 col-md-offset-2 main">
<h1 class="page-header">
Frodo
<span id="petsitter-form" class="pull-right">
<small>
<form class="form-inline" role="form">
<div class="form-group">
<input type="email" class="form-control" id="sitter-email" placeholder="Sitter Email Address">
</div>
<button type="submit" id="sitter-submit-btn" class="btn btn-default">Add Sitter</button>
</form>
</small>
</span>
<span id="petsitter-info" class="pull-right" style="display:none">
<small>
Sitter: <img class="sitter-pic img-circle" src="img/jgl.png" /> Joseph Gordon-Levitt | <a id="remove-sitter" href="#">Remove</a>
</small>
</span>
</h1>
<div class="row">
<div class="col-md-9">
<div class="pull-left">
<img class="pet-pic" src="img/frodo.jpg" />
</div>
<h1><small>Located in Cambridge, MA</small></h1>
<p class="pet-description-text">I'm Frodo! I love to play fetch in the park everyday. I also love chewing on things, but I'm not supposed to. I love to cuddle!</p>
</div>
<div class="col-md-3 calendar cal-hover">
<h3>Appointments</h3>
<div id="calendar"></div>
</div>
</div>
<h2 class="page-header" style="margin-top:0">Daily Schedule</h2>
<div id="timeline"><canvas id="timelineCanvas" height="400" width="852"></canvas><img id="timelineImage" src="img/timeline.png" align="middle"/></div>
</div>
</div>
</div>
<!-- for calendar event info -->
<div id="event-info">
<div>
<a href="#" id="close-event-info">×</span></a>
</div>
<div id="event-info-content">
</div>
<div>
<a href="#" id="delete-event-btn"><span class="glyphicon glyphicon-trash"></span></a>
</div>
</div>
<div id="add-event">
<input type="text" class="form-control input-sm" id="add-event-field" placeholder="New Appointment" />
<button id="add-event-btn" type="submit" class="btn btn-default btn-xs">Add</button>
<button id="cancel-event-btn" type="submit" class="btn btn-default btn-xs">Cancel</button>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="js/jquery-ui.js"></script>
<script src="js/jquery.ui.draggable.js"></script>
<!-- Compiled and minified JavaScript -->
<script src="js/bootstrap.min.js"></script>
<script src="js/mypetpage.js"></script>
<script type="text/javascript" src="js/fullcalendar.min.js"></script>
<script src="js/timeline.js"></script>
</body>
</html>