-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTest.html
66 lines (37 loc) · 1.87 KB
/
Test.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Project Muscle</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.2/css/bulma.min.css">
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script type='text/javascript' src='https://davidlynch.org/projects/maphilight/jquery.maphilight.js'></script>
</head>
</head>
<body>
<section class="hero is-primary is-fullheight">
<div>
<div class="form-group">
<label for="email">Email:</label>
<input type="text" class="form-control shadow-sm" id="txtEmail" name="email">
</div>
<div class="form-group">
<label for="pwd">Password:</label>
<input type="password" class="form-control shadow-sm" id="txtPassword" name="password">
</div>
<button type="submit" class="btn btn-primary shadow" id="btnLogin">Login</button>
<button type="submit" class="btn btn-primary shadow" id="btnSignup">Signup</button>
</div>
</section>
<!-- Insert these scripts at the bottom of the HTML, but before you use any Firebase services -->
<!-- Firebase App (the core Firebase SDK) is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/8.5.0/firebase-app.js"></script>
<!-- If you enabled Analytics in your project, add the Firebase SDK for Analytics -->
<script src="https://www.gstatic.com/firebasejs/8.5.0/firebase-analytics.js"></script>
<!-- Add Firebase products that you want to use -->
<script src="https://www.gstatic.com/firebasejs/8.5.0/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.5.0/firebase-firestore.js"></script>
<script src="app.js"></script>
</body>