-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfileselect.html
77 lines (68 loc) · 4.1 KB
/
fileselect.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-touch-fullscreen" content="yes">
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="author" content="Qazi Faisal Sami">
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet" />
<link href="//cdnjs.cloudflare.com/ajax/libs/select2/3.4.5/select2.css" rel="stylesheet" />
<link href="//cdnjs.cloudflare.com/ajax/libs/toastr.js/2.0.1/css/toastr.min.css" rel="stylesheet" />
<link href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css" rel="stylesheet" />
<link rel="stylesheet" href="treeChart.css">
<script src="/socket.io/socket.io.js"></script>
<!--[if (IE 6)|(IE 7)|(IE 8)]><script type="text/javascript" src="//ajax.cdnjs.com/ajax/libs/json2/20110223/json2.js"></script><![endif]-->
<script type="text/javascript" src="d3/d3.min.js"></script>
<script type="text/javascript" src="treeChart.js"></script>
<title id="ewd-title"></title>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="/respond/html5shiv.js"></script>
<script src="/respond/respond.js"></script>
<![endif]-->
</head>
<body>
<!-- NavBar header -->
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="navbar-brand visible-xs" id="ewd-navbar-title-phone"></div>
<div class="navbar-brand hidden-xs" id="ewd-navbar-title-other"></div>
</div>
<div class="navbar-collapse collapse">
<div class="navbar-form navbar-left form-group col-xs-12 col-sm-12 col-md-12 fit-xs" role="search">
<form class="navbar-form navbar-right">
<div class="form-group">
<input type="hidden" id="selectedFile" placeholder="Select File" class="form-control" style="width:300px">
</div>
<button type="submit" id="fileBtn" class="btn btn-primary">Generate</button>
</form>
</div>
</div>
</div>
</div>
<!-- Main body -->
<div id="content">
<!-- main CONTAINER -->
<div id="main_Container" class="container in" style="display: none"></div>
</div>
<!-- Placed at the end of the document so the pages load faster -->
<script type="text/javascript" src="//code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<script type="text/javascript" src="//netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/select2/3.4.5/select2.js"></script>
<script src="/ewdjs/EWD.js"></script>
<script type="text/javascript" src="app.js"></script>
</body>
</html>