-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
74 lines (64 loc) · 3.28 KB
/
Copy pathhome.html
File metadata and controls
74 lines (64 loc) · 3.28 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
<!DOCTYPE html>
<html>
<head>
<title>The Confluence ninja - home</title>
<script>
window.onbeforeunload = function (e) {
// Your logic to prepare for 'Stay on this Page' goes here
return "Please click 'Stay on this Page' and we will give you candy";
};
</script>
<script>
!function(){var analytics=window.analytics=window.analytics||[];if(!analytics.initialize)if(analytics.invoked)window.console&&console.error&&console.error("Segment snippet included twice.");else{analytics.invoked=!0;analytics.methods=["trackSubmit","trackClick","trackLink","trackForm","pageview","identify","reset","group","track","ready","alias","debug","page","once","off","on"];analytics.factory=function(t){return function(){var e=Array.prototype.slice.call(arguments);e.unshift(t);analytics.push(e);return analytics}};for(var t=0;t<analytics.methods.length;t++){var e=analytics.methods[t];analytics[e]=analytics.factory(e)}analytics.load=function(t,e){var n=document.createElement("script");n.type="text/javascript";n.async=!0;n.src="https://cdn.segment.com/analytics.js/v1/"+t+"/analytics.min.js";var a=document.getElementsByTagName("script")[0];a.parentNode.insertBefore(n,a);analytics._loadOptions=e};analytics.SNIPPET_VERSION="4.1.0";
analytics.load("f0mkFrd38lR8LW97t73odW9VkiQP532m");
analytics.page("Home");
}}();
</script>
<script>
function getApp(type) {
analytics.track('Get App Button Click', {app_type: type});
alert('done');
}
</script>
</head>
<body>
<ul>
<li>
<a href="https://joe-ayoub-segment.github.io/home.html">Home</a>
</li>
<li>
<a href="https://joe-ayoub-segment.github.io/sign_up.html">Sign up</a>
</li>
<li>
<a href="https://joe-ayoub-segment.github.io/video_tutorials.html">Confluece Video tutorials</a>
</li>
<li>
<a href="https://joe-ayoub-segment.github.io/jira_tips.html">JIRA tips</a>
</li>
<li>
<a href="https://joe-ayoub-segment.github.io/project_management.html">Project Management</a>
</li>
<li>
<a href="https://joe-ayoub-segment.github.io/collaboration_best_practices.html">Collaboration best practices</a>
</li>
</ul>
<h1>Welcome to the Confluence Ninja!</h1>
<p>Learn how to use Confluence like a pro.</p>
<br/><br/><br/>
Have you downloaded our app? <a href="javascript:;" onclick="javascript:getApp('iOS');">iOS</a>, <a href="javascript:;" onclick="javascript:getApp('Android');">Android</a>
<div style="width:400px; height:400px; border:2px solid blue;" id="bluebox">This is a blue box</div>
<div style="width:400px; height:400px; border:2px solid red;" id="redbox">This is a red box</div>
<div style="width:400px; height:400px; border:2px solid yellow;"id="yellowbox">This is a yellow box</div>
<form action="/action_page.php" id="visualtaggerform">
<fieldset>
<legend>Personal information:</legend>
First name:<br>
<input type="text" name="firstname" value="Mickey"><br>
Last name:<br>
<input type="text" name="lastname" value="Mouse"><br><br>
<input type="text" name="userId" value="12345675432"><br><br>
<input type="submit" value="Submit">
</fieldset>
</form>
</body>
</html>