-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (56 loc) · 2.58 KB
/
index.html
File metadata and controls
77 lines (56 loc) · 2.58 KB
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>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="google-signin-scope" content="profile email">
<meta name="google-signin-client_id" content="138370122056-fpevjpa2bgg0vkptfedcr1ojpdnhmsh3.apps.googleusercontent.com">
<script src="https://apis.google.com/js/platform.js" async defer></script>
<script src="script.js"></script>
<title>Stressed Strawberries</title>
<meta name="description" content="We Are Stressed Strawberries">
<meta name="author" content="Lord, Savior, and Harem leader Maxwell">
<link rel="stylesheet" href="style.css">
</head>
<body id="body">
<!--https://developers.google.com/identity/sign-in/web/sign-in-->
<!--https://medium.com/@thomashellstrom/use-google-as-login-in-your-web-app-with-oauth2-352f6c7f10e6-->
<div class="g-signin2" id="signin" data-onsuccess="onSignIn" data-theme="dark" style="display: none"></div>
<div id="mySidebar" class="sidebar">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="index.html">Home</a>
<a href="explore2.html">Explore Map</a>
<a href="stories.html">Stories Database</a>
<a href="#">About</a>
<a href="login.html" onclick="signOut();" id="signout">Sign out</a>
<div id="profileinfo"> </div>
</div>
<div id="main">
<button class="openbtn" onclick="openNav()">☰ </button>
<iframe src="https://snazzymaps.com/embed/292648" width="100%" height="600px" style="border:none;"></iframe>
<center><h1> Share Your Story! </h1></center>
<div class="a">
<center>
<form action="/updatestories.py">
<label for="restaurant">Small Business Restaurant</label> <br>
<select id="restaurant" name="restaurant">
<option value="0">Eddie's Sweetshop</option>
<option value="1">Lillian's Pizzeria</option>
<option value="2">Tea Time</option>
</select>
<!-- <label for="fname">Message</label> <br>
<input type="text" id="textbox" name="firstname" placeholder="Your message.." > -->
<br><br><label for="message">Message</label> <br>
<textarea id="message" name="message" rows="6" cols="135"></textarea>
<input type='text' id='name' name='name' style = 'display: none;' value=''>
<input type='text' id='email' name='email' style = 'display: none;' value=''>
<input type='text' id='pfp' name='pfp' style = 'display: none;' value=''>
<input type="submit" value="Submit">
</center>
</form>
</div>
<br><br><br>
<center> Don't see the small business you had in mind? Go to Explore Map from the navigation bar and add it! </center>
<br>
</div>
</body>
</html>