-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (65 loc) · 2.53 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>STCPay</title>
</head>
<body>
<div class="nav" id="nav">
<ul>
<li onclick="window.location.href='login.html'">STC Pay</li>
<li id="left"><img src ="STC.svg" id="logo"></li>
<li onclick="window.location.href='login.html'"><button>Log In</button></li>
<li onclick="window.location.href='index.html'"><button>Sign Up</button></li>
</ul>
<hr>
</div>
<div class="mainsection">
<img src="Group 1.svg" id="pay2">
<div class="left_part2">
<h1>Sign Up</h1>
<form id="form">
<div class="input">
<label>Name</label><br>
<input id="name" type="text" required>
</div>
<div class="input">
<label>Phone Number</label><br>
<input id="phone_num" type="text" required>
</div>
<div class="input">
<label>Email</label><br>
<input id="email" type="email" required>
</div>
<div class="input" id="pass_field">
<label>Password</label><br>
<input id="passcode" type="password" required>
</div>
<button onclick="validate()">Sign Up</button>
</form>
</div>
</div>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/8.9.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.9.1/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.9.1/firebase-auth.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: "AIzaSyBc2On0APkLuNU4Yaa3azMaiA0xyk-89js",
authDomain: "stcdryrun3.firebaseapp.com",
projectId: "stcdryrun3",
storageBucket: "stcdryrun3.appspot.com",
messagingSenderId: "148436928182",
appId: "1:148436928182:web:f33bba9513e6d2167e0817"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
</script>
</body>
<script src="index.js"></script>
</html>