-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintro.html
167 lines (105 loc) · 4.71 KB
/
intro.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="hackAttack_2.0.css" />
</head>
<title>W3.CSS Template</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Amatic+SC">
<style>
body, html {height: 100%}
body,h1,h2,h3,h4,h5,h6 {font-family: "Amatic SC", sans-serif}
.menu {display: none}
</style>
<body>
<div id="id01" class="modal">
<form class="modal-content animate" action = "rrj.html">
<div class="imgcontainer">
<span onclick="document.getElementById('id01').style.display='none'" class="close" title="Close Modal">×</span>
</div>
<div id = "login_div" class="container">
<label for="userEmail"><h1>Email</h1></label>
<input type="text" placeholder="Enter Email" id="email_field" required>
<label for="psw"><h1>Password</h1></label>
<input type="password" placeholder="Enter Password" id="password_field" required>
<button onclick="login()">Login to Account</button>
<!--label>
<input type="checkbox" checked="checked" name="remember"> Remember me
</label>
<span class="psw">Forgot <a href="#">password?</a></span>
</div>
<div class="container" style="background-color:#f1f1f1">
<button type="button" onclick="document.getElementById('id01').style.display='none'" class="cancelbtn">Cancel</button>
</div-->
</div>
</form>
</div>
<!--div id="id02" class="modal" action="choices.html">
<form class="modal-content animate">
<div class="imgcontainer">
<span onclick="document.getElementById('id02').style.display='none'" class="close" title="Close Modal">×</span>
</div>
<div class="container_1.0">
<label for="yourName"><h1>Your Name</h1></label>
<input type="text" placeholder="First and Last Name" id="yourName" required>
<label for="userEmail"><h1>Email</h1></label>
<input type="text" placeholder="Enter your email" id="email_field" required>
<label for="psw"><h1>Password</h1></label>
<input type="password" placeholder="Create a Password" id="password_field" required>
<label for="psw"><h1>Confirm your Password</h1></label>
<input type="password" placeholder="Confirm your Password" id="password_field" required>
<form action="/action_page.php">
Birthday:
<input type="date" id="bday">
<input type="submit" id="Send">
</form>
<button onclick="login()">Login to Account</button>
</div>
<div class="container" style="background-color:#f1f1f1">
<button type="button" onclick="document.getElementById('id01').style.display='none'" class="cancelbtn">Cancel</button>
</div>
</form>
</div-->
<script>
// Get the modal
var modal = document.getElementById('id01');
//var modal02 = document.getElementById('id02');
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
</script>
<header class="bgimg w3-display-container w3-grayscale-min" id="home">
<div class="w3-display-bottomleft w3-padding">
<!--span class="w3-tag w3-xlarge">Open from 10am to 12pm</span-->
</div>
<div class="w3-display-middle w3-center">
<span class="w3-text-white w3-hide-small" style="font-size:100px">Release<br></span>
<button onclick="document.getElementById('id02').style.display='block'" class="w3-button w3-xxlarge w3-black" style="width:auto;">Sign-Up</button>
<button onclick="document.getElementById('id01').style.display='block'" class="w3-button w3-xxlarge w3-black" style="width:auto;">Login</button>
<!--a href="choices.html"><button>Login</button></a-->
<!--button onclick="document.getElementById('id01').style.display='block'" class="w3-button w3-xxlarge w3-black" style="width:auto;">Login</button-->
<!--button onclick="login()">Login to Account</button>
<button onclick="setUp()">Set up Account</button-->
<!--script src="hackAttack.js"></script-->
</div>
<script src="https://www.gstatic.com/firebasejs/4.8.1/firebase.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: "AIzaSyBPmZU5GIVK_6iDzROpMaYgUaqVu4FadlY",
authDomain: "fir-web-login-8b7c5.firebaseapp.com",
databaseURL: "https://fir-web-login-8b7c5.firebaseio.com",
projectId: "fir-web-login-8b7c5",
storageBucket: "fir-web-login-8b7c5.appspot.com",
messagingSenderId: "301701306998"
};
firebase.initializeApp(config);
</script>
<script src="index_edit.js"></script>
</body>
</html>