-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
154 lines (126 loc) · 5.57 KB
/
index.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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!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="Keep your Notes in beautful way">
<meta name="keywords" content="HTML,CSS,JavaScript,bootstrap,Notes,plus">
<meta name="author" content="MotYim">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Notes Plus</title>
<!-- Bootstrap -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- 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.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- our style -->
<link rel="stylesheet" href="css/style.css">
<!-- animate css-->
<link rel="stylesheet" href="css/animate.css">
</head>
<body id="body">
<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog"
aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<form class="modal-content" onsubmit="return addNote()">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"
aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel">Add New Note</h4>
</div>
<div class="modal-body">
<div class="alert alert-danger" role="alert" id="error"><b>Error !</b>
please enter text on title and note body</div>
<input type="text" class="form-control" id="title"
placeholder="Note title" required><br>
<textarea class="form-control" rows="3" id="note"
placeholder="Write Note here..." required></textarea>
<div class="colors">
<div class="color blue">
<input type="checkbox" value="#3E4EB8" id="blue" name="color" checked />
<label for="blue"></label>
</div>
<div class="color River">
<input type="checkbox" value="#3498db" id="River" name="color" />
<label for="River"></label>
</div>
<div class="color turquoise">
<input type="checkbox" value="#1abc9c" id="turquoise" name="color" />
<label for="turquoise"></label>
</div>
<div class="color sunflower">
<input type="checkbox" value="#f1c40f" id="sunflower" name="color" />
<label for="sunflower"></label>
</div>
<div class="color carpot">
<input type="checkbox" value="#e67e22" id="carpot" name="color" />
<label for="carpot"></label>
</div>
<div class="color clouds">
<input type="checkbox" value="#ecf0f1" id="clouds" name="color" />
<label for="clouds"></label>
</div>
<div class="color Alizarin">
<input type="checkbox" value="#e74c3c" id="Alizarin" name="color" />
<label for="Alizarin"></label>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="submit" class="btn btn-primary">ADD</button>
</div>
</form>
</div>
</div>
<!-- Fixed navbar -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed"
data-toggle="collapse" data-target="#navbar" aria-expanded="false"
aria-controls="navbar">
<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="#">Notes Plus</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li class="active"><a data-toggle="modal" data-target="#myModal" id="addBtn">Add New <span class="sr-only">(current)</span></a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<div class="container body">
<div class="row" id="cards" >
<!--here content will be added-->
</div>
</div>
<div class="bin" ondrop="drop(event)" ondragover="allowDrop(event)">
<img src="images/bin.png" alt="">
</div>
<div class="copyright">
made with <span class="glyphicon glyphicon-heart"></span> by
<a href="http://motyim.github.io/" target="_blank">motYim</a>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script src="js/jquery.nicescroll.min.js"></script>
<script src="js/wow.js"></script>
<script src="js/script.js"></script>
<script src="js/database.js"></script>
</body>
</html>