Files
DoEverythingBar/index.html
T
Arjun Patel 9255e1eb3c asdf
2017-10-07 23:26:31 -07:00

57 lines
2.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>DoEverythingBar</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<button id="authorize-button" style="display: none;">Sign-In</button>
<button id="signout-button" style="display: none;">Sign-Out</button>
<button id="create-event" style="display: none;">Create-Event</button>
<div class="container main-bg" id="content">
<div class="row">
<div class="col-xs-8 search-col">
<div id="search-cont">
<div class="input-group stylish-input-group">
<input type="text" id="input" class="form-control" placeholder="Search" >
<span class="input-group-addon">
<image id="fire" src="images/error.png">
<button type="submit">
<span id="enter" class="glyphicon glyphicon-upload"></span>
</button>
</span>
</div>
</div>
</div>
</div>
<iframe
height="100%"
width="100%"
id="map"
frameborder="0" style="border:0; display: none;"
src="https://www.google.com/maps/embed/v1/place?key=AIzaSyCZCgZY7ZlSMk1DW0NEEoHZ9qwdSL4AR1k&q=Eiffel+Tower,Paris+France" allowfullscreen>
</iframe>
</div>
<script type="text/javascript" src="google/maps.js"></script>
<script type="text/javascript" src="google/calendar.js"></script>
<script type="text/javascript" src="main.js"></script>
<script type="text/javascript" src="google/gauth.js"></script>
<script async defer src="https://apis.google.com/js/api.js"
onload="this.onload=function(){};handleClientLoad()"
onreadystatechange="if (this.readyState === 'complete') this.onload()">
</script>
</body>
</html>