-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
98 lines (85 loc) · 3.17 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
<!DOCTYPE html>
<html>
<head>
<title>My variant</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="description" content="Get my variant in the Ip namespace">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="./styles/style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<!--<img src="./resources/book.jpg" class="img-responsive image" alt="Responsive image">-->
<div class="container-fluid" id="imageContainer">
<header class="container navbar-fixed-top">
<div class="row ">
<h2 class="text-center">Find Youre Personal quote</h2>
</div>
</header>
<main class="container" id="mainRow">
<div class="row form-horizontal">
<div class="col-sm-12 col-md-8 col-md-offset-2" >
<div class="form-group">
<label for="start_count" class="col-sm-3 control-label" id="findLabel">What Find???</label>
<div class="col-sm-6">
<input id="my_id" type="text" class="form-control" placeholder="Quote">
</div>
<div class="col-sm-3">
<div class="filebox">
<label class="btn btn-default btn-file">
Choose File <input type="file" style="display: none;" id="files" name="files[]" multiple>
</label>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-6 col-md-12 bs3-col">
<div class="output text-center">
<output id="file_list"></output>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-6 col-sm-offset-3 col-md-offset-3 col-md-6">
<button type="submit" class="btn btn-blue btn-block" id="find_button">Find</button>
</div>
</div>
</div>
</div>
<div class="ss">
<div class="row" id="table_row">
<table class="table table-striped text-center">
<thead class="thead">
<tr id="table_lable">
<th>Position</th>
<th>Quote</th>
<th>File</th>
</tr>
</thead>
<div class="panel-group">
<div class="panel panel-default">
<div class="panel-heading" id="res_header1">
<tbody id="res_header">
</tbody>
</div>
</div>
</div>
</table>
</div>
</div>
<div class="jumbotron" id="container_row">
<div class="container">
<output id="source_text"></output>
</div>
</div>
</main>
</div>
<footer class="text-center navbar-fixed-bottom">
<a href="https://github.com/post-Industrial">We Are Here</a>
</footer>
<script src="./js/file-manip.js"> </script>
</body>
</html>