-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (37 loc) · 2.02 KB
/
index.html
File metadata and controls
60 lines (37 loc) · 2.02 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<!-- Custom Styles -->
<link rel="stylesheet" href="main.css">
<script src="https://www.gstatic.com/firebasejs/4.2.0/firebase.js"></script>
</head>
<body id="mainBody" >
<div class="container-fluid">
<div class="signupForm mx-auto d-block">
<h1>Astro Math</h1>
<p>Sign-up for a mission!</p>
<input class="mx-auto d-block" id="txtName" type="text" name="name" placeholder="name">
<input class="mx-auto d-block" id="txtEmail" type="email" name="email" placeholder="email">
<input class="mx-auto d-block" id="txtPassword" type="password" name="password" placeholder="password">
<button id="btnLogin" class="btn btn-action ">Log-In</button>
<button id="btnSignUp" class="btn btn-secondary ">Sign-Up</button>
<!-- <button id="btnLogout" class="btn btn-action">Log-Out</button> -->
</div>
</div>
<!-- Custom JS -->
<!-- jQuery first, then Tether, then Bootstrap JS. -->
<script
src="http://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>
<script src="./js/auth.js" ></script>
<script src="./js/main.js"></script>
</body>
</html>