-
Notifications
You must be signed in to change notification settings - Fork 7
/
activate.html
67 lines (58 loc) · 2.7 KB
/
activate.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>RikiTraki</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="shortcut icon" href="/favicon.ico">
<!-- bower:css -->
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.css" />
<!-- endbower -->
<!-- build: use this block later with processhtml to prepare dist-->
<link rel="stylesheet" href="css/main.css">
<!-- endbuild -->
</head>
<body>
<!--[if lt IE 10]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div id="navigationBar" class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<a href="." id="logo" class="pull-left"><img src="images/logonone.png"></a>
</div>
</div>
</div>
<div class="modal fade" id="activateModal" data-backdrop="static" data-keyboard="false" tabindex="-1" role="dialog" aria-labelledby="basicModal" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Hi <span id="hi-username"></span>!</h4>
<p>Activate your account...</p>
</div>
<div class="modal-body">
<div class="well">
<p class="text-center">Welcome to RikiTraki.<br><br>Press the button below to activate your account and login to RikiTraki</p>
<div class="modal-footer">
<div class="form-group">
<button id="activateAccountButton" class="btn btn-default center-block">Activate</button>
</div>
<div class="alert alert-warning text-left" id="activationMessage" role="alert" style="display: none">
<span class="glyphicon glyphicon-info-sign" aria-hidden="true"></span>
<span class="sr-only">Info:</span>
Your account has been activated and you are now logged in.
</div>
<div class="alert alert-danger text-left" id="activationError" role="alert" style="display: none">
<span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
<span class="sr-only">Error:</span>
<span id="activationErrorText"></span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="js/activate.js"></script>
</body>
</html>