-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcollaboration_best_practices.html
84 lines (77 loc) · 3.16 KB
/
collaboration_best_practices.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<title>Confluence collaboration best practices</title>
<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("Collaboration best practices");
}}();
</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>Confluence collaboration best practices</h1>
<p>There's a right and a wrong way to use Confluence for collaboration. Learn how to do it right, here.</p>
<br/>
<br/>
<br/>
<br/>
<form name="register" onsubmit="fire_events(event)">
If you enjoyed this content then register for the Confluence Collaboration course
<input type="hidden" name="course_type" value="Collaboration course"/>
<br/>
<br/>
Full name
<input name="full_name" required="" size="81" type="text"/>
<br/>
<br/>
Email
<input name="email" required="" size="81" type="text"/>
<br/>
<br/>
<input name="submit" type="submit" value="submit"/>
</form>
<script type="text/javascript">
function fire_events(e){
e.preventDefault();
var form = e.target;
var email = form["email"].value;
var full_name = form["full_name"].value;
var course_type = form["course_type"].value;
var user = {
email: email,
full_name: full_name,
course_type: course_type
};
analytics.identify(user.full_name + '_id', {
email: user.email,
full_name: user.full_name
});
analytics.track('Course Registered', {
course_type: user.course_type
});
alert('done');
}
</script>
</body>
</html>