This repository has been archived by the owner on Oct 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprivacy-policy.html
107 lines (100 loc) · 4.24 KB
/
privacy-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
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
<DOCTYPE!>
<html lang="en">
<head>
<!-- This is the logged in site of the site. All users that will view these code shall be autheticated registered users. -->
<!-- Bootstrap is used as a means of achiveing mobile "responsive-ness" | FOundations could be used alter... -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- IDK how these shall conflict yet...
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link href='http://fonts.googleapis.com/css?family=Lato:100,300,400,300italic' rel='stylesheet' type='text/css'>
-->
<link rel="stylesheet" href="res/css/backendStyle.css" type="text/css" media="screen">
<title>HOME | NCA</title>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">
<img alt="NCA-Logo" src="...">
</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="./home.html">News</a></li>
<li><a href="./events.html">Events</a></li>
<li><a href="./donations.html">Donations</a></li>
<li><a href="./gallery.html">Gallery</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li>
<a href="./msgs.html">
<span class="glyphicon glyphicon-envelope" aria-hidden="true"></span> Inbox
</a>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Uahengo Jr. <span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li><a href="./profile.html">My Profile</a></li>
<li><a href="./subscriptions.html">Subscriptions</a></li>
<li><a href="./billing.html">Billing</a></li>
<li><a href="./settings.html">Settings</a></li>
<li><a href="./help-page.html">Help</a></li>
<li><a href="./privacy-policy.html">Privacy Policy</a></li> <!-- Maybe throw this in the footer -->
<li role="separator" class="divider"></li>
<li><a href="#">Log Out</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<!-- Set character limit to this-->
<aside class="aside-alerts" id-="aside-alerts"><p>These will be the announcment area for stuff that's coming up soon.</p></aside>
<main class="" id="">
<div class="container">
<!-- The community gallery will be here. -->
<center>
<h1>Coming soon... (Privacy Policy Page)</h1>
</cneter>
</div>
</main>
<footer class="" id="">
<div class="container">
<div class="col-md-12 footer">
<ul class="list-inline pull-right">
<li><a href="./help-page.html">Help</a></li>
<li><a href="#">Shop</a></li>
<li><a href="#">About</a></li>
</ul>
<a href="#"><span class="" title=""></span></a>
<ul class="list-inline">
<li>© 2016 <span title="">NCA ORG</span></li>
<li><a href="#">Terms</a></li>
<li><a href="./privacy-policy.html">Privacy</a></li>
<li><a href="#">Security</a></li>
</ul>
</div>
</div>
</footer>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</body>
</html>