-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·132 lines (109 loc) · 5.32 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Team-Player Survey</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/bootstrap.css">
<link href='http://fonts.googleapis.com/css?family=Droid+Serif' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<script type="text/x-handlebars">
<h1>Team-Player Survey</h1>
{{outlet}}
{{outlet modal}}
</script>
<script type="text/x-handlebars" id="index">
<div>
<h2>Purpose</h2>
<p>This survey will help you identify your style as a team player. The result will help you assess your current strengths and provide a basis for a plan to increase your effectiveness as a team player.</p>
</div>
<div>
<h2>Directions</h2>
<p>Please keep the following two things in mind:
<ul>
<li>First, this is a survey, and there are no right or wrong answers.</li>
<li>Second, please answer each item based on how you honestly feel you function now as a team member rather than how you used to be or how you would like to be.</li>
</ul></p>
<p>You will be asked to complete eighteen sentences. Each sentence has four possible endings. Please arrange the endings in the order in which you feel they apply to you--strongest first, weakest last.</p>
</div>
<div>
<button {{action 'startSurvey' this}}>Start!</button>
</div>
</script>
<script type="text/x-handlebars" id="questions">
<div>
<div>Please arrange the endings in the order in which you feel they apply to you--strongest first, weakest last.</div>
<div>
{{#each controller }}
<div class="question">
<p>{{text}}</p>
<div class="options">
<ul class="sortable">
{{#each options }}
<li {{bind-attr id=elementId}}><a href="javascript: void(0)">{{text}}</a> </li>
{{/each}}
</ul>
</div>
</div>
{{/each}}
</div>
<div class="centered"><button {{action 'openSummary' 'summary' model}}>See your primary team-player style</button></div>
</div>
</script>
<script type="text/x-handlebars" id="summary">
{{#modal-dialog title=view.title close='closeSummary'}}
<div class="style-container">
{{#each summary.primaries }}
{{partial [0]}}
{{/each}}
</div>
{{/modal-dialog}}
</script>
<script type="text/x-handlebars" id="contributor">
<div class="style-name">Contributor ({{[1]}}/180)</div>
<div class="style-key-words">dependable, responsible, organized, efficient, logical, clear, systematic, relevant, <nobr>and proficient</nobr></div>
<div class="style-description">You are highly task oriented and focus on getting tasks/work done in a very efficient and quality manner.</div>
</script>
<script type="text/x-handlebars" id="collaborator">
<div class="style-name">Collaborator ({{[1]}}/180)</div>
<div class="style-key-words">cooperative, flexible, confident, conceptual, open, accommodating, generous, visionary, <nobr>and imaginative</nobr></div>
<div class="style-description">You are highly goal oriented and focus on establishing goals and then continuing to bring the team back to that focus.</div>
</script>
<script type="text/x-handlebars" id="communicator">
<div class="style-name">Communicator ({{[1]}}/180)</div>
<div class="style-key-words">supportive, encouraging, relaxed, tactful, helpful, friendly, patient, informal, considerate, <nobr>and spontaneous</nobr></div>
<div class="style-description">You are very process-oriented. You often help the team to focus on the more enjoyable side of its behaviors, and you also help to develop needed processes.</div>
</script>
<script type="text/x-handlebars" id="challenger">
<div class="style-name">Challenger ({{[1]}}/180)</div>
<div class="style-key-words">candid, ethical, questioning, honest, truthful, outspoken, principled, <nobr>and adventurous</nobr></div>
<div class="style-description">You are a questioner. You are a very important part of the team as you help to ask the questions that don’t often get asked. Why are we doing certain things a certain way? Are there other ways of doing something? Can we do this faster, cheaper, better?</div>
</script>
<script type="text/x-handlebars" id="components/modal-dialog">
<div class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title">{{title}}</h3>
</div>
<div class="modal-body">
{{yield}}
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</script>
<script src="js/libs/jquery-1.10.2.js"></script>
<script src="js/libs/jquery-ui.js"></script>
<script src="js/libs/jquery.ui.touch-punch.min.js"></script>
<script src="js/libs/handlebars-1.1.2.js"></script>
<script src="js/libs/bootstrap.js"></script>
<script src="js/libs/ember-1.5.1.js"></script>
<script src="js/app.js"></script>
</body>
</html>