-
Notifications
You must be signed in to change notification settings - Fork 1
/
tasks.html
94 lines (87 loc) · 4.26 KB
/
tasks.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!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">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>mothr.io - Tasks</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap-theme.min.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap-datepicker3.min.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<!-- Different Tabs (Memories/Appointments/Tasks) in the nav bar -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">mothr.io</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="memories.html">Memories</a></li>
<li><a href="appointments.html">Appointments</a></li>
<li class="active"><a href="#">Tasks <span class="sr-only">(current)</span></a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li class="navbar-text">Hi, <span class="navbar-username">Samantha</span></li>
<li><button id="logout" class="navbar-btn btn btn-primary btn-block">Log out</button></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<!-- The main screen -->
<div class="container">
<div id="entries" class="col-sm-10 col-sm-offset-1" style="padding-top: 70px">
<!-- The button for adding new entries -->
<button id="addEntry" class="btn btn-primary btn-block btn-lg"><span class="glyphicon glyphicon-plus"></span></button>
<!-- New task input dialogue -->
<div id="new-entry">
<form id="new-entry-form">
<div class="row input-entry">
<div class="col-sm-12">
<textarea id="new-entry-text" class="entry-input-description-field task-input-description-field" placeholder="Enter the task"></textarea>
</div>
</div>
<div class="row">
<div class="col-sm-offset-10 col-sm-2"><input type="submit" class="btn btn-primary btn-block" value="Save"></div>
</div>
</form>
</div>
<!-- A task template -->
<div id="entry-block" class="row entry">
<div class="col-sm-10 col-xs-6 tasks-text-holder" ><p id="entry-text" class="tasks-text-style"> entry text </p></div>
<div class="btn-group col-sm-2 col-xs-6">
<button id="check-btn" type="button" class="btn btn-default"><span class="glyphicon glyphicon-ok"></span></button>
<button id="edit-btn" type="button"class="btn btn-default"><span class="glyphicon glyphicon-pencil"></span></button>
<button id="delete-btn" class="btn btn-default"><span class="glyphicon glyphicon-remove"></span></button>
</div>
<hr>
</div>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<script src="js/tasksScript.js"> </script>
<script src="js/bootstrap-datepicker.min.js"></script>
</body>
</html>