-
Notifications
You must be signed in to change notification settings - Fork 1
/
idea_page.html
76 lines (60 loc) · 2.2 KB
/
idea_page.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Dating App</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css">
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/style.css" />
</head>
<body>
<div class="container">
<nav>
<div class="nav-wrapper center-align" style="width: 100%">
<h1>
<a href="index.html">DIG</a>
<h1>
</div>
</nav>
<!-- The dropdown category button should be here for user selection -->
<div id="main-page-buttons" class="center-align">
<div class="custom-select" id="dropdown" style="width:200px;">
<select>
<option value="coffee">Coffee</option>
<option value="outdoors">Outdoors</option>
<option value="shops">Shopping</option>
<option value="drinks">Drinks</option>
<option value="food">Food</option>
<option value="trending">Trending</option>
</select>
</div>
<button class="btn waves-effect waves-light" type="submit" id="submit-btn" name="action">Submit
</button>
</div>
<div class="row" id='foo'>
<div id="foursquare" class="col s6"></div>
<div id="googlemapdiv" class="image-gm col s6">
<iframe id="googlemap" class="responsive-img">
</iframe>
</div>
</div>
<div class="tableinfo">
<table class="centered" id="tablediv">
<!-- details of venue go in here -->
</table>
</div>
</div>
<script src="https://www.gstatic.com/firebasejs/4.13.0/firebase.js"></script>
<!-- jQuery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/js/materialize.min.js"></script>
<script src="assets/javascript/javascript.js"></script>
</body>
<br>
<br>
<footer class="page-footer">
<!-- <div class="footer-copyright"> -->
</footer>
</html>