-
Notifications
You must be signed in to change notification settings - Fork 2
/
login.html
33 lines (32 loc) · 1.18 KB
/
login.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
<html>
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans">
<link rel="stylesheet" type="text/css" href="login.css">
</head>
<body>
<center id="topName">
<span style="font-size:72px">Char(k)ity</span>
<br>
<span>A Charity Wallet for the Ark Platform</span>
</center>
<div id="mainBox">
<div class="middleMain">
<div id="emailDiv">
<input type="text" id="newEmail" class="texters" placeholder="Email"></input>
</div>
<div id="passwordDiv">
<input type="password" class="texters" id="newPassword" placeholder="Password"></input>
</div>
</div>
<div class="middleMain" id="otherMiddle">
<button onclick="createUser()" class="texters" style="right:0px">Sign Up</button>
<button onclick="loginUser()" class="texters">Sign In</button>
</div>
</div>
<script src="https://www.gstatic.com/firebasejs/4.12.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/4.12.0/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/4.12.0/firebase-database.js"></script>
<script src="bundle.js"></script>
<script src="login.js"></script>
</body>
</html>