-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit dec2531
Showing
1 changed file
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<title>Intergram Demo Page</title> | ||
|
||
<meta charset="utf-8" /> | ||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" /> | ||
<meta name="viewport" content="initial-scale=1.0, user-scalable=no"> | ||
|
||
<style type="text/css"> | ||
body { | ||
background-color: #f0f0f2; | ||
margin: 10px; | ||
padding: 0; | ||
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; | ||
} | ||
|
||
.main { | ||
max-width: 600px; | ||
margin: 5em auto; | ||
padding: 50px; | ||
background-color: #fff; | ||
border-radius: 1em; | ||
} | ||
</style> | ||
|
||
</head> | ||
<body> | ||
|
||
<div class="main"> | ||
<h1>messages here</h1> | ||
<p>send your message by clicking on the floating chatbox below </p> | ||
|
||
|
||
</div> | ||
|
||
</body> | ||
|
||
<script> | ||
window.intergramId = "896612074"; | ||
window.intergramCustomizations = { | ||
titleClosed: 'Closed chat title', | ||
titleOpen: 'talk to sandy', | ||
introMessage: 'First message when the user opens the chat for the first time', | ||
autoResponse: 'A message that is sent immediately after the user sends its first message', | ||
autoNoResponse: 'A message that is sent one minute after the user sends its first message ' + | ||
'and no response was received', | ||
mainColor: "#E91E63", // Can be any css supported color 'red', 'rgb(255,87,34)', etc | ||
alwaysUseFloatingButton: true // Use the mobile floating button also on large screens | ||
}; | ||
</script> | ||
<script id="intergram" type="text/javascript" src="https://www.intergram.xyz/js/widget.js"></script> | ||
|
||
</html> |