-
Notifications
You must be signed in to change notification settings - Fork 0
/
signUp.html
63 lines (61 loc) · 2.62 KB
/
signUp.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
<!DOCTYPE html>
<html>
<head>
<title>Goal Setter</title>
<meta charset="utf-8">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.indigo-pink.min.css">
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/7.2.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/3.1.0/firebase-database.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script>
// Your web app's Firebase configuration
var firebaseConfig = {
apiKey: "AIzaSyDCk7bWbSnRr1M_9RgpUmGSra7_98OsS80",
authDomain: "fir-39893.firebaseapp.com",
databaseURL: "https://fir-39893.firebaseio.com",
projectId: "fir-39893",
storageBucket: "fir-39893.appspot.com",
messagingSenderId: "817598980919",
appId: "1:817598980919:web:69c9a6e1306703f170b0b2"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
</script>
<script src="signUp.js"></script>
</head>
<body>
<!-- Always shows a header, even in smaller screens. -->
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
<header class="mdl-layout__header">
<div class="mdl-layout__header-row">
<!-- Title -->
<span class="mdl-layout-title">Goal Setter</span>
<!-- Add spacer, to align navigation to the right -->
<div class="mdl-layout-spacer"></div>
<!-- Navigation. We hide it in small screens. -->
<nav class="mdl-navigation mdl-layout--large-screen-only">
<a class="mdl-navigation__link" href="">Create</a>
<a class="mdl-navigation__link" href="">Sign In</a>
</nav>
</div>
</header>
<main class="mdl-layout__content">
<form id="signUp-form">
<p>Email: </p><input id="signUp-email" class="signUp-input" type="text">
<p>Password: </p><input id="signUp-password" class="signUp-input" type="password">
<button id="signUp-button" type="submit">Sign Up</button>
</form>
<form id="logIn-form" action="landing.html">
<p>Email: </p><input id="logIn-email" class="logIn-input">
<p>Password: </p><input id="logIn-password" class="logIn-input">
<button id="logIn-button">Sign Up</button>
</form>
</main>
</div>
</body>
</html>