-
Notifications
You must be signed in to change notification settings - Fork 2
/
policy.html
61 lines (59 loc) · 2.59 KB
/
policy.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
<!DOCTYPE html>
<html>
<head>
<title>Account Policy</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<script src="//code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.7.0/underscore-min.js"></script>
<script src="js/jquery.cookie.js"></script>
<script src="js/ohmage.js"></script>
<script src="policy.js"></script>
<style>
a, button {
width: 100px;
margin-left: 20px;
}
</style>
</head>
<body>
<div id="wrap">
<div class="container">
<div class="row">
<div class="span10">
<div class="page-header">
<h1><img src="img/logo.png"> Account Policy</h1>
</div>
</div>
</div>
<div class="row">
<div class="span12">
<p><i>Please read the following content, and confirm your understanding of the document at the bottom of this page.</i></p>
<div id="policy-text">
<legend>Policy</legend>
<lead>The class setup privilege (required for setup of your own students/classes) comes with more responsibility in the Mobilize system. Please read the following and confirm your understanding</lead>
<br><br>
<ul>
<li>The user will not share his/her account username and password with anyone under any circumstances. A member of the Mobilize project will never ask the user for their password. </li>
<li>The user will create classes and add students only for the purpose of the Mobilize units and will not create classes for other teachers.</li>
<li>The user will ensure they are logged out of their account before leaving their computer unattended.</li>
<li>The user will keep generated accounts and passwords for students private and share the account information to assigned students only.</li>
<li>Mobilize personnel reserve the right to modify or terminate accounts of users at any time for any reason.</li>
<ul>
</div>
<div id="confirmation-form">
<form class="form-horizontal">
<fieldset>
<legend>Confirm</legend>
<div>
<button id="submitbutton" type="submit" class="btn">I accept.</button>
</div>
</fieldset>
</form>
</div>
</div>
</div>
</div>
</div>
</body>
</html>