-
Notifications
You must be signed in to change notification settings - Fork 0
/
disclaimer.html
executable file
·44 lines (33 loc) · 1.33 KB
/
disclaimer.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="css/general.css">
<link rel="stylesheet" type="text/css" href="css/profile.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body>
<header>
<h1>PnP</h1>
</header>
<section class="navBar">
<div class="leftRightNavBar">
<!-- Back button to viewing page: -->
<a href="index.php"><button id="backToView" class="backbtn"><i class="left"></i>Back To Sign In</button></a>
</div>
</section>
<section style="margin-left: 2.5%;">
<h1>Disclaimers</h1>
<ul>
<li>This is not a real website</li>
<li>Enter information at your own risk</li>
<li>We just wrote the code and are not responsible for your actions ie a "user's" actions</li>
<li>If you find a bug - shout out on via github to pingdink</li>
</ul>
</section>
</body>
</html>