forked from raphapassini/calendarjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (44 loc) · 1.79 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
<!DOCTYPE html>
<html>
<head>
<title>CalendarJS</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<link href="css/bt/css/bootstrap.min.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js 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/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
</head>
<body>
<h1 class="title">Welcome to eventCalendar</h1>
<div class="row">
<div class="col-md-4">
<form role="form" class="form-inline">
<div class="form-group">
<input type="text" class="form-control" id="date_to_go" placeholder="Digite uma data aqui">
</div>
<div class="form-group">
<button type="submit" class="btn btn-success">Ir para essa data</button>
</div>
</form>
<br/>
<div class="calendar"></div>
</div>
<div class="col-md-8">
<h2 style="margin-top:0">Click in a day to see the events</h2>
<div id="event_list_content"></div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://code.jquery.com/jquery.js"></script>
<script src="jquery.maskedinput.min.js"></script>
<script src="calendar.js" charset="UTF-8"></script>
<script src="make_calendar.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="css/bt/js/bootstrap.min.js"></script>
</body>
</html>