-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (58 loc) · 2.31 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
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Hello Bulma!</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.4/css/bulma.min.css">
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
</head>
<body>
<script>
window.fbAsyncInit = function () {
FB.init({
appId: '293248461077436',
autoLogAppEvents: true,
xfbml: true,
version: 'v3.2'
});
};
(function (d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) { return; }
js = d.createElement(s); js.id = id;
js.src = "https://connect.facebook.net/en_US/sdk.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
FB.Event.subscribe('send_to_messenger', function (e) {
// callback for events triggered by the plugin
});
</script>
<script async defer src="https://connect.facebook.net/en_US/sdk.js"></script>
<section class="section">
<div class="container">
<h1 class="title">
Hello World
</h1>
<p class="subtitle">
My first website with <strong>Bulma</strong>!
</p>
<form action="/process" method="POST">
<div class="control">
<input class="input" type="text" placeholder="Text input">
<button class="button is-primary">Submit</button>
</div>
</form>
<div class="fb-send-to-messenger" messenger_app_id="293248461077436" page_id="728471234186868"
data-ref="state_custom" color="<blue | white>" size="<standard | large | xlarge>">
</div>
<div class="fb-messenger-checkbox" origin=https://albionahoti.github.io/traisr/ page_id=728471234186868
messenger_app_id=293248461077436 user_ref="user tracktrace" allow_login="<true>"
size="<small | medium | large | standard | xlarge>" skin="<light|dark>" center_align="<true|false>">
</div>
</div>
</section>
</body>
<script>
</script>
</html>