-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathionicBonding.html
More file actions
154 lines (128 loc) · 3.98 KB
/
ionicBonding.html
File metadata and controls
154 lines (128 loc) · 3.98 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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!--************************************************************************************
Title: Ionic Bonding Practice App
Author: Patrick Levy
Last Updated: 3/31/2015
Description: This application is a simple example of a web application for helping
students to learn ionic bonding.
Notes: This application was built using the Meteor Framework. This page utilizes
the bootstrap framework for grid layout.
**************************************************************************************-->
<head>
<title>Ionic Bonding</title>
</head>
<body>
<div class="container" id="centerPage">
<div id="main">
<div id="header" class="row">
<div class="col-md-6 text-left">
<h1>Ionic Bonding </h1>
</div>
<div class="col-md-6 text-right">
{{> displayScore}}
</div>
</div>
<div id="bondingDiv" class="row">
<div class="col-md-12">
<h3>Determine the correct subscripts. You must answer correctly on your first try to score a point!</h3>
</div>
</div>
<div id="centerSection" class="row">
<div class="col-md-6">
<div id="compoundNameDiv" class="row">
<div class="col-md-12">
<h2> {{ >displayName}} </h2>
</div>
</div>
<div id="ionsDiv" class = "row">
<h2> {{> ions}} </h2>
</div>
<div id="selectors" class="row">
<div class="col-md-2" >
<select id="catSubVal">
<option value="1"> </option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
</select>
</div>
<div class="col-md-2">
<select id="anSubVal">
<option value="1"> </option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
</select>
</div>
</div>
<div class="row">
<p> </p>
</div>
<div id="checkButtons" class="row">
<div class="col-md-12">
{{> checkAnswers}}
</div>
</div>
<div id="answerDiv" class="row">
<!-- Holds space for feedback to be displayed -->
<h1> </h1>
</div>
</div>
<div id="ions" class="col-md-6">
<img src='/ions.jpg' />
</div>
</div>
<div id="header" class="row">
<div class="col-md-12">
<h5> {{> addPlayerForm}} </h5>
{{> loginButtons}}
</div>
<div class="col-md-6">
</div>
</div>
<div id="header" class="row">
<div class="col-md-12">
{{ >sessions}}
</div>
</div>
</div>
</div>
</body>
<!--Meteor Templates -->
<template name="displayName">
{{showCatName }} {{showAnName}}
</template>
<template name="ions">
<div class="col-md-2 text-left">
{{showCations}}
</div>
<div class="col-md-4 text-left">
{{showAnions}}
</div>
</template>
<template name="checkAnswers">
<button>Check Answers</button>
<h3> {{feedback}} </h3>
</template>
<template name="displayScore">
<h1>Score: {{showScore}} </h1>
</template>
<template name="addPlayerForm">
<form>
<input type="text" name="playerName" placeholder="Session Name">
<button>Save Session</button>
</form>
</template>
<template name="sessions">
{{#if currentUser}} <!-- Onlyl display saved sessions if user is logged in -->
<h2> Sessions: </h2>
<u1>
{{#each player}}
<li>{{name}}: Score: {{score}} Attempts: {{attempts}} </li>
{{/each}}
</u1>
{{/if}}
</template>