-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (90 loc) · 4.77 KB
/
index.html
File metadata and controls
102 lines (90 loc) · 4.77 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<html>
<head>
<meta charset="utf-8">
<title>Html Form</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="login-root">
<div class="box-root flex-flex flex-direction--column" style="min-height: 100vh;flex-grow: 1;">
<div class="loginbackground box-background--white padding-top--64">
<div class="loginbackground-gridContainer">
<div class="box-root flex-flex" style="grid-area: top / start / 8 / end;">
<div class="box-root" style="background-image: linear-gradient(white 0%, rgb(247, 250, 252) 33%); flex-grow: 1;">
</div>
</div>
<div class="box-root flex-flex" style="grid-area: 4 / 2 / auto / 5;">
<div class="box-root box-divider--light-all-2 animationLeftRight tans3s" style="flex-grow: 1;"></div>
</div>
<div class="box-root flex-flex" style="grid-area: 6 / start / auto / 2;">
<div class="box-root box-background--blue800" style="flex-grow: 1;"></div>
</div>
<div class="box-root flex-flex" style="grid-area: 7 / start / auto / 4;">
<div class="box-root box-background--blue animationLeftRight" style="flex-grow: 1;"></div>
</div>
<div class="box-root flex-flex" style="grid-area: 8 / 4 / auto / 6;">
<div class="box-root box-background--gray100 animationLeftRight tans3s" style="flex-grow: 1;"></div>
</div>
<div class="box-root flex-flex" style="grid-area: 2 / 15 / auto / end;">
<div class="box-root box-background--cyan200 animationRightLeft tans4s" style="flex-grow: 1;"></div>
</div>
<div class="box-root flex-flex" style="grid-area: 3 / 14 / auto / end;">
<div class="box-root box-background--blue animationRightLeft" style="flex-grow: 1;"></div>
</div>
<div class="box-root flex-flex" style="grid-area: 4 / 17 / auto / 20;">
<div class="box-root box-background--gray100 animationRightLeft tans4s" style="flex-grow: 1;"></div>
</div>
<div class="box-root flex-flex" style="grid-area: 5 / 14 / auto / 17;">
<div class="box-root box-divider--light-all-2 animationRightLeft tans3s" style="flex-grow: 1;"></div>
</div>
</div>
</div>
<div class="box-root padding-top--24 flex-flex flex-direction--column" style="flex-grow: 1; z-index: 9;">
<div class="box-root padding-top--48 padding-bottom--24 flex-flex flex-justifyContent--center">
<h1><a href="#" rel="dofollow">Data Collection</a></h1>
</div>
<div class="formbg-outer">
<div class="formbg">
<div class="formbg-inner padding-horizontal--48">
<span class="padding-bottom--15">Methods</span>
<form id="stripe-login" method="post" name="Date_sublimation">
<div class="field padding-bottom--24">
<label for="name">Name</label>
<input type="name" name="name" placeholder="Full Name" required>
</div>
<div class="field padding-bottom--24">
<label for="phone">Phone Number</label>
<input type="tel" id="phone" name="phone" value="+60" required> <!-- pattern="^(\+?6?01)[0-46-9]-*[0-9]{7,8}$" (Malaysia Network/Phone Code pattern)-->
</div>
<div class="field padding-bottom--24">
<label for="email">Email ID</label>
<input type="email" id="email" name="email" placeholder="example@email.com" required>
</div>
<div class="field padding-bottom--24">
<input type="submit" name="submit" value="Submit">
</div>
</form>
</div>
</div>
<div class="footer-link padding-top--24">
<div class="listing padding-top--24 padding-bottom--24 flex-flex center-center">
<span><a href="https://www.aeroer.live/">© Aeroer.Live</a></span>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
const scriptURL = 'https://script.google.com/macros/s/AKfycby_tQ0SviyGqRMw_YujkHAl5VaoAHrwSoSsSPg7yx2qv79thyw-OfW5MOg2lGWHGwpU/exec'
const form = document.forms['Date_sublimation']
form.addEventListener('submit', e => {
e.preventDefault()
fetch(scriptURL, { method: 'POST', body: new FormData(form)})
.then(response => alert("Thanks for Contacting us..! We Will Contact You Soon..."))
.catch(error => console.error('Error!', error.message))
.catch.contact-form.reset();
})
</script>
</body>
</html>