-
Notifications
You must be signed in to change notification settings - Fork 0
/
unsafe.html
56 lines (45 loc) · 2.96 KB
/
unsafe.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
<html>
<head>
<title>Mark Unsafe</title>
<!-- Load the Firebase library before loading the body. -->
<script src="https://www.gstatic.com/firebasejs/3.1.0/firebase.js"></script>
<!-- Load the jQuery library, which we'll use to manipulate HTML elements with Javascript. -->
<script src="https://code.jquery.com/jquery-2.2.0.min.js"></script>
<!-- Load Bootstrap stylesheet, which will is CSS that makes everything prettier and also responsive (aka will work on all devices of all sizes). -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<header class="header" style="display: flex; background: #AE6F77;">
<div class="btn-group" style="display: inline-block; margin: 0 auto;">
<a href="chat.html"><button style="font-size: 48px; display: inline-block; margin: 0 auto; background-color: #AE6F77;">chat</button></a>
<a href="unsafe.html"><button style="font-size: 48px; display: inline-block; margin: 0 auto; background-color: #AE6F77;">unsafe</button></a>
<a href="index.html#about"><button style="font-size: 48px; display: inline-block; margin: 0 auto; background-color: #AE6F77;">about</button></a>
<a href="index.html"><button style="font-size: 48px; display: inline-block; margin: 0 auto; background-color: #AE6F77;">home</button></a>
</div>
</header>
<!-- Load the application script, which will save data to our Firebase app when we click the button. -->
<script src="application.js"></script>
<div class="container">
<unsafe>mark unsafe</unsafe>
<form id="unsafeForm" action="chat.html">
<label for="name">Name</label>
<input class="form-control" id="name" placeholder="What is your name?">
<br>
<label for="personalSecret">Personal Secret</label>
<input class="form-control" id="personalSecret" placeholder="Please enter a one-word secret that can be used later to validate who you are.">
<br>
<label for="location">Location</label>
<input class="form-control" id="location" placeholder="What is your location?">
<!-- When you click this button, trigger the submit event on this form. -->
<button type="submit" class="btn btn-default">Submit</button>
</form>
</div>
</body>
</html>