-
Notifications
You must be signed in to change notification settings - Fork 1
/
user_table.html
51 lines (51 loc) · 2.74 KB
/
user_table.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
<!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="Fulfillment database">
<meta name="author" content="Urban Launchpad / Daniel Palencia">
<!-- Script for accessing the Fusion Tables database. -->
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<!-- Script for Swiper library by iDangero.us -->
<link rel="stylesheet" href="style/idangerous.swiper.css">
<script defer src="script/idangerous.swiper-2.x.min.js"></script>
<!-- Information getting and card controller -->
<!-- Dependent on Swiper by iDangero.us -->
<!-- Dependent on http://www.google.com/jsapi by Google -->
<script type="text/javascript" src="script/urban_launchpad.card.js"></script>
<!-- Raleway and Lora fonts -->
<link href='http://fonts.googleapis.com/css?family=Raleway:300,400,500' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<!-- CSS formatting for the cards -->
<link rel="stylesheet" href="style/urban_launchpad.card.css">
<style>
html {height: 100%;}
body {height: 100%;}
.swiper-container{height: 100%;}
.pagination{position:absolute;z-index:20;left:10px;bottom:10px;}
.swiper-pagination-switch{display:inline-block;width:8px;height:8px;border-radius:8px;background:#222;margin-right:5px;opacity:0.8;border:1px solid #fff;cursor:pointer;}
.swiper-visible-switch{background:#aaa;}
.swiper-active-switch{background:#fff;}
</style>
</head>
<body role="document" onload="initialize()">
<div id="inputContainer">
<div style="background-image: url(img/tag.jpg); height: 240px; width: 370px">
<div style="position: relative; top: 200px">
<div style="width: 170px; margin-left: auto; margin-right: auto">
<input type="text" name="production" id="production" size="9" maxlength="9">
<input type="text" name="fulfillment" id="fulfillment" size="4" maxlength="4">
</div>
</div>
</div>
<input type="button" value="Submit" onclick="onShowButtonClick()">
</div>
<div class="swiper-container" id="cardContainer" style="display:none">
<div class="swiper-wrapper" id="swiper-wrapper">
</div>
<div class="pagination"></div>
</div>
</body>
</html>