-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (56 loc) · 2.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Google Sheet API Via Javascript</title>
<link rel="canonical" href="https://mdbootstrap.com/components/forms/" />
<link rel='stylesheet' id='compiled.css-css' href='https://mdbootstrap.com/wp-content/themes/mdbootstrap4/css/compiled.min.css?ver=4.4.0' type='text/css' media='all' />
<style type="text/css">
body {
margin-top: 100px;
padding: 0;
text-align: center;
}
</style>
</head>
<body class="fixed-sn mdb-skin-custom" >
<center>
<section>
<div class="card" style="width: 28rem;">
<div class="card-body">
<!--Header-->
<div class="form-header default-color">
<h3>Google Sheet Data Form</h3>
</div>
<!--Body-->
<div class="md-form">
<input type="text" id="first_name" name="last_name" class="form-control form_field">
<label for="first_name">First Name</label>
</div>
<div class="md-form">
<input type="text" id="last_name" name="last_name" class="form-control form_field">
<label for="last_name">Last Name</label>
</div>
<div class="md-form">
<input type="email" id="email" name="email" class="form-control form_field">
<label for="email">Email</label>
</div>
<div class="text-center">
<button id="submit" name="submit" type="buttton" class="btn btn-default form_button"> Submit</button>
</div>
</div>
<div class="modal-footer">
<div class="options">
<p>Powered By <a href="#">HugoBot</a></p>
</div>
</div>
</div>
</section>
</center>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type='text/javascript' src='https://mdbootstrap.com/wp-content/themes/mdbootstrap4/js/compiled.min.js?ver=4.4.0'></script>
<script type="text/javascript" src="googlesheetapi.js"></script>
<script type="text/javascript">
GoogleSheetAPI.init();
</script>
</body>
</html>