-
Notifications
You must be signed in to change notification settings - Fork 1
/
adobe-launch.html
44 lines (43 loc) · 1.08 KB
/
adobe-launch.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
<html>
<head>
<title>Order Confirmation</title>
<script src="//assets.adobedtm.com/staging/launch-EN152e1870d472487aaac867a3905a73a0-development.min.js" async></script>
<style>
h1 {
font-family: serif;
text-align: center;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
}
button {
margin: auto;
text-align: center;
display: block;
width: 200px;
height: 50px;
font-size: 16px;
border-radius: 1px;
margin-top: 10px;
background-color: #43C4E4;
}
form {
margin: auto;
text-align: center;
}
</style>
</head>
<body>
<body>
<h1>Thanks for you order!</h1>
<img src="https://cdn.shopify.com/s/files/1/1885/8385/products/tshirts_1024x1024@2x.png?v=1503602240"></img>
</body>
<form>
Phone Number:<br>
<input type="text" name="phone"><br>
<button class="btn btn-info" id="send_sms" onclick="confirm('Message Sent!')">Track your order in App</button>
</form>
<script type=“text/javascript”>_satellite.pageBottom();</script>
</html>