-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (45 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Login Logic</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" integrity="sha512-dTfge/zgoMYpP7QbHy4gWMEGsbsdZeCXz7irItjcC3sPUFtf0kuFbDz/ixG7ArTxmDjLXDmezHubeNikyKGVyQ==" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class='container'>
<div class='login'>
<h1> Login </h1>
<div class="input-group">
<span class="input-group-addon" id="User">Email</span>
<input type="text" id='emailLogin' class="form-control" placeholder="Username" aria-describedby="basic-addon1">
</div>
<div class="input-group">
<span class="input-group-addon" id="Password">Password</span>
<input type="password" id='passwordLogin' class="form-control" placeholder="Username" aria-describedby="basic-addon1">
</div>
<div class="input-group">
<button id='loginB'> Login </button>
</div>
</div>
<div class='newUser'>
<h1> New User </h1>
<div class="input-group">
<span class="input-group-addon" id="User">Email</span>
<input id='newEmail' type="text" id='userLogin' class="form-control" placeholder="Username" aria-describedby="basic-addon1">
</div>
<div class="input-group">
<span class="input-group-addon" id="Password">Password</span>
<input id='newPassword' type="password" id='userLogin' class="form-control" placeholder="Username" aria-describedby="basic-addon1">
</div>
<div class="input-group">
<button id='clickCreate'> Create User </button>
</div>
</div>
</div>
<script src="https://cdn.firebase.com/js/client/2.3.1/firebase.js"></script>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js" integrity="sha512-K1qjQ+NcF2TYO/eI3M6v8EiNYZfA95pQumfvcVrTHtwQVDG+aHRqLi/ETn2uB+1JqwYqVG3LIvdm9lj6imS/pQ==" crossorigin="anonymous"></script>
<script src="main.js"></script>
</body>
</html>